definition:
|
checkListTuple :: Rhs a -> Int -> CSM ()
checkListTuple e i =
case e of
(SimpleRhs sI _ (List sC _ exps) _) -> checkListTuple' sI sC exps i "list"
(SimpleRhs sI _ (Tuple sC exps) _) -> checkListTuple' sI sC exps i "tuple"
_ -> return ()
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Applies actual check on List constructs.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({SimpleRhs},_) |-> _ || ({GuardedRhs},_) |-> _}
|
name:
|
checkListTuple
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.Types.Rhs a -> Prelude.Int
-> Control.Monad.Trans.State.StateT Types.CheckState Data.Functor.Identity.Identity ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|