Replace or insert values at the root of an Automerge document using
[[<- or $<-. These operators provide R-idiomatic modification.
Examples
doc <- am_create()
doc[["name"]] <- "Bob"
doc$age <- 25L
Replace or insert values at the root of an Automerge document using
[[<- or $<-. These operators provide R-idiomatic modification.
doc <- am_create()
doc[["name"]] <- "Bob"
doc$age <- 25L