IMPORTANT: To view this page as Markdown, append `.md` to the URL (e.g. /docs/manual/basics.md). For the complete Mojo documentation index, see llms.txt.
Skip to main content
Version: 1.0.0b1
For the complete Mojo documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /docs/manual/basics.md).

Floorable

The Floorable trait describes a type that defines a floor operation.

Types that conform to Floorable will work with the builtin floor function. The floor operation always returns the same type as the input.

For example:

from std.math import Floorable, floor

@fieldwise_init
struct Complex(Floorable, ImplicitlyCopyable):
var re: Float64
var im: Float64

def __floor__(self) -> Self:
return Self(floor(self.re), floor(self.im))

Implemented traits

AnyType

Required methods

__floor__

__floor__(self: _Self) -> _Self

Return the floor of the Int value, which is itself.

Returns:

_Self: The Int value itself.