generate Set From
Create an A_Set, then run the generator the specified number of times to produce elements to add. Deduplicate the elements. Answer the resulting set.
Return
The new set.
Parameters
The number of values to extract from the generator.
A generator to provide AvailObjects to store.
Create an A_Set, then run the iterator the specified number of times to produce elements to add. Deduplicate the elements. Answer the resulting set.
Return
The new set.
Parameters
The number of values to extract from the iterator.
An iterator to provide AvailObjects to store.
Create an A_Set, then run the iterator the specified number of times to produce elements to add. Deduplicate the elements. Answer the resulting set.
Return
The new set.
Parameters
The type of value produced by the iterator and consumed by the transformer.
The number of values to extract from the iterator.
An iterator to provide AvailObjects to store.
A function to transform iterator elements.
Create an A_Set, then iterate over the collection, invoking the transformer to produce elements to add. Deduplicate the elements. Answer the resulting set.
Return
The new set.
Parameters
The type of value found in the collection and consumed by the transformer.
A collection containing values to be transformed.
A function to transform collection elements to A_BasicObjects.
Create an A_Set, then iterate over the array, invoking the transformer to produce elements to add. Deduplicate the elements. Answer the resulting set.
Return
The new set.
Parameters
The type of value found in the array and consumed by the transformer.
An array containing values to be transformed.
A function to transform array elements to A_BasicObjects.
Create an A_Set, then iterate over the A_Tuple, invoking the transformer to produce elements to add. Deduplicate the elements. Answer the resulting set.
Return
The new set.
Parameters
A tuple containing values to be transformed.
A function to transform tuple elements to A_BasicObjects.