ObjectIdentifierNode.toHash

An override so that associative arrays can use an OIDNode as a key.

struct ObjectIdentifierNode
nothrow @trusted const
size_t
toHash
()

Return Value

Type: size_t

A size_t that represents a hash of the OIDNode

Examples

immutable OIDNode a = OIDNode(1, "iso");
immutable OIDNode b = OIDNode(2, "even-more-iso");
assert(b > a);

Meta