tupleNew
Creates a new tuple.
Prototype :
fun [I u0 u1] u1
- I : the size of the new tuple. Can not be negative or nul or > 256
- u0 : a value to set the items. Can be nil.
- u1 : must be always nil
Return : u1 the new tuple or nil if error
Error :
- EOK if no error.
- EARGNIL if the given size is nil.
- ERANGE if the size is out of range (<= 0 or > 256).
- EVM if a memory error occurs. The VM will exit and more information
could be found in the log file (if activated in the debug mode level).
See also :
Example :
Note