Skip to main content

Mojo module

int

Implements the Int class.

These are Mojo built-ins, so you don't need to import them.

Structs

  • Int: This type represents an integer value.

Traits

  • Indexer: This trait denotes a type that can be used to index a container that handles integral index values.
  • Intable: The Intable trait describes a type that can be converted to an Int.
  • IntableRaising: The IntableRaising trait describes a type can be converted to an Int, but the conversion might raise an error.
  • IntLike: The IntLike trait is a tag for Int or UInt. This allows writing functions that works on either.

Functions

  • index: Returns the value of __index__ for the given value.
  • int: Get the Int representation of the value.