mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-27 20:42:10 +00:00
13 lines
351 B
Rust
13 lines
351 B
Rust
//! Provides new-type wrappers for collections that are indexed by a [`Idx`] rather
|
|
//! than `usize`.
|
|
//!
|
|
//! Inspired by [rustc_index](https://github.com/rust-lang/rust/blob/master/compiler/rustc_index/src/lib.rs).
|
|
|
|
mod idx;
|
|
mod slice;
|
|
mod vec;
|
|
|
|
pub use idx::Idx;
|
|
pub use ruff_macros::newtype_index;
|
|
pub use slice::IndexSlice;
|
|
pub use vec::IndexVec;
|