definition: |
fromList :: [(String, a)] -> Trie a fromList = foldr (uncurry insert) empty |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Converts a list of key-value pairs into a trie. |
failfree: |
() |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> {foldr}} |
name: |
fromList |
precedence: |
no precedence defined |
result-values: |
{foldr} |
signature: |
[(String, a)] -> Trie a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |