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
//! A Module with functions for controlling data flow //! ## Control (//flowstdlib/control) //! Functions to control the flow of data on connections between other processing functions /// A module with functions to compare data elements and output a value depending on comparison #[path = "compare_switch/compare_switch.rs"] pub mod compare_switch; /// A module with functions for joining data #[path = "join/join.rs"] pub mod join; /// A module with functions to control the flow of data based on a control value #[path = "tap/tap.rs"] pub mod tap; /// A module with functions to route data based on a control value #[path = "route/route.rs"] pub mod route; /// A module with functions to select data on output on a control value #[path = "select/select.rs"] pub mod select; /// A module with functions to select a value to pass based on index #[path = "index/index.rs"] pub mod index;