numeric_loops/
lib.rs

1//! Efficient core numerical loops
2//!
3//! Crate Feature Flags
4//! -------------------
5//! 
6//! The following crate feature flags are available. They are configured in
7//! your `Cargo.toml`.
8//! 
9//! - ``use_nightly``
10//! 
11//!   - Optional, requires Recent nightly compiler
12//!   - Enables optimizations using fast math flags and specialization
13//! 
14#![cfg_attr(feature = "use_nightly", feature(core_intrinsics, specialization))]
15
16extern crate num_traits;
17
18pub mod sum;
19
20#[cfg(test)]
21mod tests {
22    #[test]
23    fn it_works() {
24    }
25}