1/// Contains all filtering algorithms.
2pub mod algorithms;
34pub use algorithms as filters;
56/// Raw implementations of the filters, done for organization.
7///
8/// There's both specific implementations, and more generic implementations using `From` and `Into`.
9pub mod raw;