Macros§
- list
- Abbreviation which allows one to write
list![e1, e2, ..., en]
instead ofcons(e1, cons(e2, ..., cons(en, NIL)))
Functions§
- compose_
car_ cdr - Compose car and cdr functions and apply them to a list. Example usage:
list![e1, e2, ..., en]
instead of
cons(e1, cons(e2, ..., cons(en, NIL)))