Go to the first, previous, next, last section, table of contents.


|popNth

Function: |popNth { [] n -> [] any }
file: job.t
package: muf
status: alpha

Remove one entry from a block, leaving it on the stack. The bottom (leftmost) element in the block is element zero:

[ 'a' 'b' 'c' |
Stack: [ 'a' 'b' 'c' |
0 |popNth
Stack: [ 'b' 'c' | 'a'

See section |pushNth. See section |dupNth. See section ]popNth.


Go to the first, previous, next, last section, table of contents.