Function length

Syntax:

length sequence n

Arguments and Values:

sequence—a proper sequence.

n—a non-negative integer.

Description:

14.1.0 9Returns the number of elements in sequence.

If sequence is a vector with a fill pointer, the active length as specified by the fill pointer is returned.

Examples:

 (length "abc") → 3
 (setq str (make-array '(3) :element-type 'character 
                            :initial-contents "abc"
                            :fill-pointer t)) → "abc"
 (length str) → 3
 (setf (fill-pointer str) 2) → 2
 (length str) → 2

Affected By:

None.

Exceptional Situations:

Should be prepared to signal an error of type type-error if sequence is not a proper sequence. It's implied by lazychecktype. The results are undefined if \param{sequence} is a \term{circular list}.

See Also:

list-length, sequence

Per X3J13. -kmp 05-Oct-93

Notes:

None.