generate Object Tuple From
fun generateObjectTupleFrom(size: Int, generator: (Int) -> A_BasicObject): AvailObject
Content copied to clipboard
Create an object of the appropriate size, whose descriptor is an instance of ObjectTupleDescriptor. Run the generator for each position in ascending order to produce the AvailObjects with which to populate the tuple.
Return
The new object tuple.
Parameters
size
The size of the object tuple to create.
generator
A generator to provide AvailObjects to store.