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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//!
//!  mod.rs
//!
//!  Created by Mitchell Nordine at 11:25AM on November 07, 2014.
//!
//!

extern crate num;
extern crate rand;
extern crate time;

pub use epsilon::{
    Epsilon,
    epsilon,
};
pub use factorisation::{
    is_factor,
    are_any_factors,
    are_all_factors,
    is_prime,
    lowest_non_one,
    get_all_factors,
};
pub use fps::{
    Fps,
};
pub use iter::SampleOn;
pub use math::{
    clamp,
    fmod,
    in_range,
    lerp,
    map_range,
    modulo,
    remainder,
    wrap,
};
pub use noise_walk::noise_walk;
pub use vec::{
    TakeOnly,
};

mod chain;
pub mod epsilon;
pub mod factorisation;
pub mod fps;
pub mod iter;
pub mod math;
mod noise_walk;
pub mod vec;