definition: |
toList :: Trie a -> [(String, a)] toList (Trie _ ts) = toList' ts |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Converts a trie into a list of key-value pairs. --- --- Note that no guarantees are made about the order of the elements --- in the list. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Trie}) |-> _} |
name: |
toList |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Trie a -> [(String, a)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |