definition:
|
keyOrNothing :: (Int -> key) -> SQLValue -> Maybe key
keyOrNothing _ SQLNull = Nothing
keyOrNothing keycon (SQLInt k) = Just (keycon k)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Conversion functions from SQL values to Curry values.
|
failfree:
|
(_, {SQLInt,SQLNull})
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{SQLNull}) |-> {Nothing} || (_,{SQLInt}) |-> {Just}}
|
name:
|
keyOrNothing
|
precedence:
|
no precedence defined
|
result-values:
|
{Just,Nothing}
|
signature:
|
(Prelude.Int -> a) -> Database.CDBI.Connection.SQLValue -> Prelude.Maybe a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|