definition: |
sqlIntOrNull :: (Maybe Int) -> SQLValue sqlIntOrNull Nothing = SQLNull sqlIntOrNull (Just a) = SQLInt a |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Nothing}) |-> {SQLNull} || ({Just}) |-> {SQLInt}} |
name: |
sqlIntOrNull |
precedence: |
no precedence defined |
result-values: |
{SQLInt,SQLNull} |
signature: |
Prelude.Maybe Prelude.Int -> Database.CDBI.Connection.SQLValue |
solution-complete: |
operationally complete operation |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |