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