definition: |
snoc :: a -> Queue a -> Queue a snoc x (S lenf f lenr r) = deqReverse (check (lenr + 1) (x : r) lenf f) |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Inserts an element at the end of the queue. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{S}) |-> {S}} |
name: |
snoc |
precedence: |
no precedence defined |
result-values: |
{S} |
signature: |
a -> 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 |