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

extern crate num_traits;

pub mod sum;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
    }
}