Skip to main content

Mojo trait

GreaterThanOrEqualComparable

A type which can be greater than or equal to compared with other instances of itself.

Implemented traits

AnyType, UnknownDestructibility

Aliases

__del__is_trivial

alias __del__is_trivial

A flag (often compiler generated) to indicate whether the implementation of __del__ is trivial.

The implementation of __del__ is considered to be trivial if:

  • The struct has a compiler-generated trivial destructor and all its fields have a trivial __del__ method.

In practice, it means that the __del__ can be considered as no-op.

Methods

__ge__

__ge__(self: _Self, rhs: _Self) -> Bool

Define whether self is greater than or equal to rhs.

Args:

  • rhs (_Self): The right hand side of the comparison.

Returns:

Bool: True if self is greater than or equal to rhs.

Was this page helpful?