Skip to main content

Mojo trait

Indexer

The Indexer trait is used for types that can index into a collection or pointer. The type returned is the underlying __mlir_type.index, enabling types like UInt to not have to be converted to an Int first.

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

__index__

__index__(self: _Self) -> index

Convert to index.

Returns:

index: The corresponding __mlir_type.index value.

Was this page helpful?