CurryInfo: base-3.4.0 / Prelude.ensureSpine

definition: Info
 
ensureSpine :: [a] -> [a]
ensureSpine l = ensureList (ensureNotFree l)
 where ensureList []     = []
       ensureList (x:xs) = x : ensureSpine xs
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Evaluates the argument to spine form and returns it.
Suspends until the result is bound to a non-variable spine.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> {:,[]}}
name: Info
 ensureSpine
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 [a] -> [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms