make_array — creates an empty array.
make_array (n_elements)
A number of elements.
An array with the given number of elements, all nil.
Creates an empty array for later use. This function has become obsolete as the array function can now create empty arrays. See array.
Gamma> make_array(4); [nil nil nil nil] Gamma> make_array(7); [nil nil nil nil nil nil nil] Gamma>
array
Copyright © 1995-2010 by Cogent Real-Time Systems, Inc. All rights reserved.