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