In context of this tuple, Any stands for the wild card that is used for pattern matching
when querying the tuple space for certain tuples, and marks the beginning of a matching
range when searching for matching tuples.
In context of this tuple, None represents “no match” when searching, and marks the end of a
matching range when searching for matching tuples. All defined values will fall between
Any..None.
Returns true if the other tuple matches this one. Tuples match when elements in each
respective position are equal, or one or both of them in a given position is the wildcard
E::Any.
Tuple elements have a well-defined ordering. Ordering among values of the same variant is
consistent with its contained type. Ordering among variants of different types is
mathematically and logically arbitrary but strongly consistent for the purpose of storage
and retrieval in data structures.