definition:
|
sqlKeyOrNull :: (key -> Int) -> Maybe key -> SQLValue
sqlKeyOrNull _ Nothing = SQLNull
sqlKeyOrNull key2int (Just k) = SQLInt (key2int k)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Nothing}) |-> {SQLNull} || (_,{Just}) |-> {SQLInt}}
|
name:
|
sqlKeyOrNull
|
precedence:
|
no precedence defined
|
result-values:
|
{SQLInt,SQLNull}
|
signature:
|
(a -> Prelude.Int) -> 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
|