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