bumpish 0.4.1

A set of collections using bump allocations
Documentation
1
2
3
4
5
6
7
8
9
use bumpish::BumpVec;
use std::hash::{BuildHasher, RandomState};

#[test]
fn vec_hash() {
    let vec = BumpVec::<_, 2>::from(&[1, 2, 3]);
    let hasher = RandomState::default();
    hasher.hash_one(vec);
}