Skip to main content
Log in

Mojo trait

EqualityComparableCollectionElement

This trait denotes a trait composition of the CollectionElement and EqualityComparable traits.

This is useful to have as a named entity since Mojo does not currently support anonymous trait compositions to constrain on CollectionElement & EqualityComparable in the parameter.

Implemented traits

AnyType, CollectionElement, Copyable, EqualityComparable, Movable

Methods

__copyinit__

__copyinit__(inout self: T, existing: T, /)

Create a new instance of the value by copying an existing one.

Args:

  • existing (T): The value to copy.

__moveinit__

__moveinit__(inout self: T, owned existing: T, /)

Create a new instance of the value by moving the value of another.

Args:

  • existing (T): The value to move.

__eq__

__eq__(self: T, other: T) -> Bool

Define whether two instances of the object are equal to each other.

Args:

  • other (T): Another instance of the same type.

Returns:

True if the instances are equal according to the type's definition of equality, False otherwise.

__ne__

__ne__(self: T, other: T) -> Bool

Define whether two instances of the object are not equal to each other.

Args:

  • other (T): Another instance of the same type.

Returns:

True if the instances are not equal according to the type's definition of equality, False otherwise.

Was this page helpful?