//! This module contains `View` implementations that act like pure functions.
//! They don't really rely on an internal state, but rather process value from other `View`s
pub use Add;
pub use Constant;
pub use Divide;
pub use Echo;
pub use GTE;
pub use LTE;
pub use Multiply;
pub use Subtract;
pub use Tanh;