definition: |
cycle :: [a] -> [a] cycle xs@(_:_) = ys where ys = xs ++ ys |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Builds an infinite list from a finite one. |
failfree: |
{:} |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({:}) |-> _} |
name: |
cycle |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[a] -> [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |