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