Next: lists set, Previous: lists alist, Up: lists [Index]
Construct a circular list (a ring) of the elements.
(circular-list 'z 'q) ⇒ (z q z q z q ...)
Take a proper list and make it circular (a ring). Return the circular list.
Take a circular list and “open it” returning a proper list. The car of the returned list is the car of circ. If circ is null, return null.
Build and return a copy of circ. If circ is null, return null.
Return the number of elements in circ. The length of a circular
list is a non–negative exact integer N such that: cdr
applied N times to circ, returns the circ pair
itself.
Compare the list arguments using item=, return true if the lists
are equal. If all the list arguments are null, return #t
. If at
least one list arguments is null, but not all, return #f
. If the
list arguments have different length, return #f
.