For the complete documentation index, see llms.txt. Markdown versions of all pages are available by appending .md to any URL (e.g. /get-started.md).
Mojo struct
TileMaskStatus
struct TileMaskStatus
A tile's masking status.
Fields
- status (
UInt8):
Implemented traits
AnyType,
Copyable,
Deinitable,
Equatable,
Identifiable,
ImplicitlyCopyable,
Movable,
RegisterPassable,
TrivialRegisterPassable,
Writable
comptime members
FULL_MASK
comptime FULL_MASK = TileMaskStatus(UInt8(3))
NO_MASK
comptime NO_MASK = TileMaskStatus(UInt8(0))
PARTIAL_MASK
comptime PARTIAL_MASK = TileMaskStatus(UInt8(1))
UNKNOWN_MASK
comptime UNKNOWN_MASK = TileMaskStatus(UInt8(4))
Methods
__eq__
__ne__
__is__
__and__
def __and__(self, rhs: Self) -> Self
__or__
def __or__(self, rhs: Self) -> Self
write_to
def write_to(self, mut writer: T)