gantz_std 0.2.0

A standard library of commonly useful nodes for gantz, an environment for creative systems.
Documentation
1
2
3
4
5
6
7
8
9
10
//! A library of standard plugins for gantz.

pub use bang::Bang;
pub use log::Log;
pub use number::Number;

pub mod bang;
pub mod log;
pub mod number;
pub mod ops;