no_std_collections 0.1.1

Auxiliary structures and traits for using dynamically resizable arrays (Vectors) in flexible environments, supporting both std and no_std contexts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;





pub trait Ops: VecUnsized {
  
}

impl<T: VecUnsized> Ops for T {}