mediumvec 1.3.1

Vector types optimized for space, including a 32-bit Vec
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! A vector that is indexed by `u32` instead of `usize`.

// Copyright 2017 Matt Brubeck.
//
// Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or
// the MIT license <http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

pub mod vec32;

pub use vec32::Vec32;