Set Node Catalog
Generated category
Set Node Catalog
Generated from 18 catalog nodes in Utils/Set.
Nodes in this category
Showing 18 of 18 generated node docs.
Array to Set
Utils/SetConverts an array to a set
Clear set
Utils/SetRemoves / Clears all elements from a set
Difference
Utils/SetCreates a set from the difference of 2 sets
Discard
Utils/SetDiscards an element of a set
Get Size
Utils/SetGets the size of the hash set (how many elements)
Has Element
Utils/SetChecks if an element is present in the set
Insert Element
Utils/SetInserts an element to the set
Is Empty
Utils/SetChecks if a hash set is empty or not
Is Mutual
Utils/SetChecks if one of the hash sets has at least one mutual element
Is Subset
Utils/SetChecks if a hash set is a subset from a supposed bigger one
Is Superset
Utils/SetChecks if a hash set is a superset from a supposed smaller one
Make Set
Utils/SetCreates an empty set
Pop
Utils/SetPops a random element of a set
Set to Array
Utils/SetConverts a set to an array
Union
Utils/SetCombines 2 sets into one unified hash set
Clear (By Ref)
Utils/Set/By ReferenceClear all elements directly from a variable set without copying.
Discard (By Ref)
Utils/Set/By ReferenceRemove an element directly from a variable set without copying. Much faster for large sets.
Insert (By Ref)
Utils/Set/By ReferenceInsert an element directly into a variable set without copying. Much faster for large sets.