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


Sequences

Sequences are ordered groups of objects, there are several primitive types which can be considered sequences, each with its own good and bad points.

A sequence is either an array or a list, where an array is either a vector or a string.

Function: sequencep object
This function returns t if object is a sequence, nil otherwise.


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