CurryInfo: string-trie-0.0.2 / Data.Trie.Internal.singleton'

definition:
singleton' :: String -> a -> InternalTrie a
singleton' str v =
  foldr (\c t -> InternalTrie Nothing [(c, t)]) (InternalTrie (Just v) []) str
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- A singleton internal trie.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
singleton'
precedence:
no precedence defined
result-values:
_
signature:
String -> a -> InternalTrie a
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms