CurryInfo: string-trie-0.0.2 / Data.Trie.delete

definition:
delete :: String -> Trie a -> Trie a
delete key (Trie s it) = case (delete' key it) of 
  Nothing -> Trie s     it
  Just t  -> Trie (s-1) t 
demand:
arguments 1 2
deterministic:
deterministic operation
documentation:
--- Removes a key from the trie. 
--- If the key is not in the trie, the trie is returned unchanged.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{Trie}) |-> {Trie}}
name:
delete
precedence:
no precedence defined
result-values:
{Trie}
signature:
String -> 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