Functions
- Table of Contents
- cons -- Construct a new pair from two objects
- car -- Get the car part of a pair.
- cdr -- Get the cdr part of a pair.
- length -- Return the length of a list.
- append -- Appends some lists
- append! -- Append some lists using side-effects.
- pair? -- Test if an object is a pair.
- null? -- Test if an object is the empty list.
- list? -- Test if an object is a proper list.
- set-car! -- Set the car of a pair.
- set-cdr! -- Set the cdr of a pair.
- reverse -- Returns the reverse of a list.
- reverse! -- Reverses a list using side effects.
- list-tail -- Returns the k-th cdr of a list.