Mojo trait
Identifiable
The Identifiable trait denotes a type with an identity which can be compared with other instances of itself.
Implemented traitsβ
AnyType
Methodsβ
__is__
β
__is__(self: T, rhs: T) -> Bool
Define whether self
has the same identity as rhs
.
Args:
- βrhs (
T
): The right hand side of the comparison.
Returns:
True if self
is rhs
.
__isnot__
β
__isnot__(self: T, rhs: T) -> Bool
Define whether self
has a different identity than rhs
.
Args:
- βrhs (
T
): The right hand side of the comparison.
Returns:
True if self
is not rhs
.
Was this page helpful?
Thank you! We'll create more content like this.
Thank you for helping us improve!
π What went wrong?