Utility Classes

The Data Structures package includes a couple utility classes that provide commonly needed functions when creating and using data structures.


HashCode

Combines multiple hash codes into a single value.

int hash = HashCode.Combine(a, b, c);

Identifier

Generates identifiers.

string guid = Identifier.Guid();
long id = Identifier.UnixTime();