mirror of
https://github.com/fluencelabs/wasmer
synced 2025-05-11 10:07:12 +00:00
13 lines
225 B
Rust
13 lines
225 B
Rust
|
mod boxed;
|
||
|
mod map;
|
||
|
mod slice;
|
||
|
|
||
|
pub use self::boxed::BoxedMap;
|
||
|
pub use self::map::{Iter, IterMut, Map};
|
||
|
pub use self::slice::SliceMap;
|
||
|
|
||
|
pub trait TypedIndex {
|
||
|
fn new(index: usize) -> Self;
|
||
|
fn index(&self) -> usize;
|
||
|
}
|