definition:
|
toValueOrNull :: (a -> SQLValue) -> Maybe a -> SQLValue
toValueOrNull _ Nothing = SQLNull
toValueOrNull f (Just v) = f v
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Conversion functions from Curry values to SQL values.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Nothing}) |-> {SQLNull} || (_,{Just}) |-> _}
|
name:
|
toValueOrNull
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> Database.CDBI.Connection.SQLValue) -> Prelude.Maybe a
-> Database.CDBI.Connection.SQLValue
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|