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