definition: |
lookup :: String -> Trie a -> Maybe a lookup key (Trie _ it) = lookup' key it |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Looks up a value in the trie. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{Trie}) |-> _} |
name: |
lookup |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Trie a -> Prelude.Maybe a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |