definition: |
insert :: String -> a -> Trie a -> Trie a insert key val t = update key (const val) t |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
--- Inserts a value into the trie. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> {Trie}} |
name: |
insert |
precedence: |
no precedence defined |
result-values: |
{Trie} |
signature: |
String -> a -> Trie a -> Trie a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |