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