enumPutList | R Documentation |
Add a new key-value pairs to an enum, where the value is a list.
enumPutList(key, values, enum, overwrite = FALSE)
key |
Key to be added |
values |
Values to be added |
enum |
enum the key-value pairs should be added to. WARNING: the original object is not modified! |
overwrite |
if TRUE and a |
Enum with added key-value pair.
library(ospsuite.utils)
myEnum <- enum(c(a = "b"))
myEnum <- enumPut("c", "d", myEnum)
myEnum <- enumPut(c("c", "d", "g"), list(12, 2, "a"), myEnum, overwrite = TRUE)
myEnum <- enumPutList("g", list(12, 2, "a"), myEnum, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.