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