fera_ext/
lib.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5#![doc(html_root_url = "https://docs.rs/fera-ext/0.2.0/")]
6
7//! Extensions traits for [`std`] types.
8//!
9//! This crate can be used through [`fera`] crate.
10//!
11//! [`fera`]: https://docs.rs/fera
12//! [`std`]: https://doc.rust-lang.org/stable/std/
13extern crate rand;
14
15mod vec;
16
17pub use vec::VecExt;