definition:
|
toFormReader :: IO a -> FormReader a
toFormReader = FormReader
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms an IO action into a `FormReader` action.
--- This operation should be used with care since it must be
--- ensured that the action only reads data and does not
--- change the environment, since the action is applied twice
--- when executing a form.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {FormReader}}
|
name:
|
toFormReader
|
precedence:
|
no precedence defined
|
result-values:
|
{FormReader}
|
signature:
|
Prelude.IO a -> FormReader a
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|