definition:
|
gatherSpanFromFieldDecls :: (FieldDecl -> Span) -> [FieldDecl] -> [Span]
gatherSpanFromFieldDecls _ [] = []
gatherSpanFromFieldDecls fun (f:fs) = [(fun f)]++(gatherSpanFromFieldDecls fun fs)
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Using a span picker, constructs a list of spans.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{[]}) |-> {[]} || (_,{:}) |-> _}
|
name:
|
gatherSpanFromFieldDecls
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(Curry.Types.FieldDecl -> Curry.Span.Span) -> [Curry.Types.FieldDecl]
-> [Curry.Span.Span]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|