sliding_features/pure_functions/mod.rs
1//! This module contains `View` implementations that act like pure functions.
2//! They don't really rely on an internal state, but rather process value from other `View`s
3
4mod add;
5mod constant;
6mod divide;
7mod echo;
8mod gte;
9mod lte;
10mod multiply;
11mod subtract;
12mod tanh;
13
14pub use add::Add;
15pub use constant::Constant;
16pub use divide::Divide;
17pub use echo::Echo;
18pub use gte::GTE;
19pub use lte::LTE;
20pub use multiply::Multiply;
21pub use subtract::Subtract;
22pub use tanh::Tanh;