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


sublis

Function: sublis { alist list -> list }
file: 10-C-lists.muf
package: muf
status: alpha

The sublis function returns a copy of the given list in which keys present in the association list alist are everywhere replaced by their corresponding values in alist. See section assoc.

Stack:
[ [ 'your 'car ]l [ 'your 'spouse ]l ]l --> list
Stack:
[  'your 'my cons   'car 'bicycle cons   ]l --> alist
Stack:
alist list sublis printList
Stack: "[ [ 'my 'bicycle ]l [ 'my 'spouse ]l ]l"

See section nsublis.


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