needNCells
needNCells(
{s_cellType | S_userType}
x_cellCount
)
=> t / nil
Description
Ensures that there is enough memory available for the specified number of SKILL objects (cells).
If necessary, more memory is allocated. The name of the user type can be passed in as a string or a symbol, however internal types like list or fixnum must be passed in as symbols.
Arguments
Value Returned
Examples
Guarantees there will always be 1000 list cells available in the system.
needNCells( 'list 1000 )
=> t
Related Topics
Return to top