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