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).
span
Implements the Span type.
You can import these APIs from the memory module. For example:
from std.collections import Span
comptime values
ImmSpan
comptime ImmSpan[T: AnyType, origin: ImmOrigin] = Span[T, origin]
A span providing read-only access to its elements.
Parameters
MutSpan
comptime MutSpan[T: AnyType, origin: MutOrigin] = Span[T, origin]
A span providing mutable access to its elements.
Parameters
Structs
-
Span: A non-owning view of contiguous data.