definition:
|
fromDefTrees :: DefTree f -> Int -> [DefTree f] -> DefTree f
fromDefTrees dt _ [] = dt
fromDefTrees dt n dts@(_:_) | n >= 0 && n < length dts = dts !! n
| otherwise = dt
|
demand:
|
argument 3
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the definitional tree with the given index from the given list of
--- definitional trees or the provided default definitional tree if the given
--- index is not in the given list of definitional trees.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,{[]}) |-> _ || (_,_,{:}) |-> _}
|
name:
|
fromDefTrees
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
DefTree a -> Prelude.Int -> [DefTree a] -> DefTree a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|