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


array-dimensions [Function]

array-dimensions array => dimensions

Arguments and Values::

array---an array.

dimensions---a list of integers.

Description::

Returns a list of the dimensions of array. (If array is a vector with a fill pointer, that fill pointer is ignored.)

Examples::

 (array-dimensions (make-array 4)) =>  (4)
 (array-dimensions (make-array '(2 3))) =>  (2 3)
 (array-dimensions (make-array 4 :fill-pointer 2)) =>  (4)

Exceptional Situations::

Should signal an error of type type-error if its argument is not an array.

See Also::

section array-dimension [Function]


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