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