R/dictionaryAssign.R

#' @export
`[.Dictionary` <- function(x, key){
  x$get(key)
}
#' @export
`[<-.Dictionary` <- function(x, key, value){
  x$set(key, value)
}
RaphaelS1/dictionaryR6 documentation built on May 8, 2019, 7:38 a.m.