1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
   Appellation: ops <mod>
   Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Operations
pub use self::pad::*;

pub(crate) mod pad;

pub mod fft;

pub(crate) mod prelude {
    pub use super::fft::prelude::*;
    pub use super::pad::*;
}

#[cfg(test)]
mod tests {}