Module ostd::collections::xarray
source · Expand description
This module introduces the xarray crate and provides relevant support and interfaces for XArray.
Structs§
- A
Cursorcan traverse in theXArrayby setting or increasing the target index and can perform read-only operations to the target item represented by the target index. - A
CursorMutcan traverse in theXArrayby setting or increasing the target index and can perform read-write operations to the target item represented by the target index. XArrayis an abstract data type functioning like an expansive array of items where each item must be an 8-byte object, such asArc<T>orBox<T>.
Enums§
- The mark type used in the
XArray.