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


|shiftp

Function: |shiftp { [a ...] -> [...] }
file: job.t
package: muf
status: alpha

Remove first element from a block, discarding it. This is equivalent to the |shift pop code sequence:

Stack: 
[ 'a' 'b' 'c' 'd' |
Stack: [ 'a' 'b' 'c' 'd' |
|shiftp
Stack: [ 'b' 'c' 'd' |

See section |shift. See section |shiftp.


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