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


|get

Function: |get do{ [] key -> [] val }
file: job.t
package: muf
status: alpha

Given key and a block interpreted as keyval pairs, |get returns the value corresponding to key in the block, if present, else nil.

[   :a 1   :b 2   :c 3   |
Stack: [ :a 1 :b 2 :c 3 |
:a |get
Stack: [ :a 1 :b 2 :c 3 | 1

Keywords are the recommended type of key, but any datatype may be used.

See section |ged. See section |gep. See section |dup. See section |position.


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