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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

//! A collection of filters used in 'signalo' umbrella crate.

#![warn(missing_docs)]
#![warn(
    // Coarse:
    clippy::all,
    // clippy::restriction,
    clippy::pedantic,
    // clippy::nursery,
    clippy::cargo,
    clippy::perf,
    clippy::style,
    clippy::correctness,
    // Fine:
    clippy::use_self,
    clippy::unimplemented,
    clippy::todo,
    clippy::else_if_without_else,
    clippy::unneeded_field_pattern,
    clippy::unwrap_used,
    clippy::wrong_self_convention,
    clippy::wrong_pub_self_convention,
)]
#![cfg_attr(all(not(test), not(feature = "std")), no_std)]

#[cfg(all(not(test), not(feature = "std")))]
extern crate core as std;

#[cfg(all(test, feature = "std"))]
extern crate std;

#[cfg(test)]
extern crate testdrop;

pub extern crate num_traits;

#[cfg(feature = "dimensioned")]
pub extern crate dimensioned;

#[cfg(test)]
#[macro_use]
extern crate nearly_eq;

pub extern crate signalo_traits;

pub use signalo_traits as traits;

pub mod cache;
pub mod classify;
pub mod convolve;
pub mod delay;
pub mod differentiate;
pub mod hampel;
pub mod identity;
pub mod integrate;
pub mod mean;
pub mod median;
pub mod observe;
pub mod ops;
pub mod unit_system;
pub mod wavelet;

mod circular_buffer;