Returns a list containing the dimensions of an array.
fli
foreign-array-dimensions array-or-type => dimensions
array-or-type⇩ |
A FLI array, a pointer to a FLI array or the name of a FLI array type. |
dimensions |
A list containing the dimensions of array-or-type. |
The function foreign-array-dimensions
returns a list containing the dimensions of array-or-type.
In the following example an instance of a 3 by 4 array is created, and these dimensions are returned using the foreign-array-dimensions
function.
(setq array1 (fli:allocate-foreign-object :type '(:c-array :int 3 4)))
(fli:foreign-array-dimensions array1)
Foreign Language Interface User Guide and Reference Manual - 01 Dec 2021 19:34:58