definition: |
rotate :: Queue a -> Queue a rotate q = snoc (deqHead q) (deqTail q) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Moves the first element to the end of the queue. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> {S}} |
name: |
rotate |
precedence: |
no precedence defined |
result-values: |
{S} |
signature: |
Queue a -> Queue a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |