collections2 0.0.1

Traits for generic collections, such as lists, maps and sets (supports no_std)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(not(feature = "std"), no_std)]

mod collection;
mod iter;
mod list;
mod map;
mod set;

#[cfg(feature = "alloc")]
extern crate alloc;

pub use collection::{Collection, CollectionMut};
pub use iter::{Iterable, IterableMut};
pub use list::{List, ListMut};
pub use map::{Map, MapMut};
pub use set::{Set, SetMut};