CurryInfo: base-3.4.0 / Prelude.repeat

definition: Info
 
repeat :: a -> [a]
repeat x = x : repeat x
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Infinite list where all elements have the same value.
Thus, `repeat x = [x, x, x, ...]`.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> {:}}
name: Info
 repeat
precedence: Info
 no precedence defined
result-values: Info
 {:}
signature: Info
 a -> [a]
solution-complete: Info
 operationally complete operation
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms