mediumvec/
lib.rs

1//! A vector that is indexed by `u32` instead of `usize`.
2
3// Copyright 2017 Matt Brubeck.
4//
5// Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or
6// the MIT license <http://opensource.org/licenses/MIT>, at your option. This file may not be
7// copied, modified, or distributed except according to those terms.
8
9pub mod vec32;
10
11pub use vec32::Vec32;