definition: |
boolOrNothing :: SQLValue -> (Maybe Bool) boolOrNothing SQLNull = Nothing boolOrNothing (SQLBool a) = Just a |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
{SQLBool,SQLNull} |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({SQLNull}) |-> {Nothing} || ({SQLBool}) |-> {Just}} |
name: |
boolOrNothing |
precedence: |
no precedence defined |
result-values: |
{Just,Nothing} |
signature: |
Database.CDBI.Connection.SQLValue -> Prelude.Maybe Prelude.Bool |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |