1
2
3
4
5
6
7
8
//! Provides a fixed-length array in which basic traits are implemented.
//!
//! 基本的なトレイトが実装されている固定長の配列を提供します。
pub use collection::*;
pub use vec_x::*;

mod vec_x;
mod collection;