definition: |
deqInit :: Queue a -> Queue a deqInit (S _ _ _ [] ) = empty deqInit (S lenf f lenr (_:rs)) = check lenf f (lenr - 1) rs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Removes an element at the end of the queue. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({S}) |-> {S}} |
name: |
deqInit |
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 |