Skip to content

Set Node Catalog

Generated category

Set Node Catalog

Generated from 18 catalog nodes in Utils/Set.

Utils/Set/By Reference

Nodes in this category

Showing 18 of 18 generated node docs.

Array to Set

Utils/Set

Converts an array to a set

Clear set

Utils/Set

Removes / Clears all elements from a set

Difference

Utils/Set

Creates a set from the difference of 2 sets

Discard

Utils/Set

Discards an element of a set

Get Size

Utils/Set

Gets the size of the hash set (how many elements)

Has Element

Utils/Set

Checks if an element is present in the set

Insert Element

Utils/Set

Inserts an element to the set

Is Empty

Utils/Set

Checks if a hash set is empty or not

Is Mutual

Utils/Set

Checks if one of the hash sets has at least one mutual element

Is Subset

Utils/Set

Checks if a hash set is a subset from a supposed bigger one

Is Superset

Utils/Set

Checks if a hash set is a superset from a supposed smaller one

Make Set

Utils/Set

Creates an empty set

Pop

Utils/Set

Pops a random element of a set

Set to Array

Utils/Set

Converts a set to an array

Union

Utils/Set

Combines 2 sets into one unified hash set

Clear (By Ref)

Utils/Set/By Reference

Clear all elements directly from a variable set without copying.

Discard (By Ref)

Utils/Set/By Reference

Remove an element directly from a variable set without copying. Much faster for large sets.

Insert (By Ref)

Utils/Set/By Reference

Insert an element directly into a variable set without copying. Much faster for large sets.