alter | R Documentation |
trie_add
and trie_remove
allow you to
add or remove entries from tries, respectively.
trie_add(trie, keys, values) trie_remove(trie, keys)
trie |
a trie object created with |
keys |
a character vector containing the keys of the entries to add (or remove). Entries with NA keys will not be added. |
values |
an atomic vector, matching the type of the trie, containing the values of the entries to add. Entries with NA values will not be added. |
nothing; the trie is modified in-place
trie
for creating tries in the first place.
trie <- trie("foo", "bar") length(trie) trie_add(trie, "baz", "qux") length(trie) trie_remove(trie, "baz") length(trie)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.