url_cleaner_engine/tutorial/cleaner/control_flow.rs
1//! # Control flow
2//!
3//! To create advanced cleaners, several components supper various forms of control flow.
4
5pub(crate) use super::*;
6
7pub mod if_then_else;
8pub(crate) use if_then_else::*;
9pub mod maps;
10pub(crate) use maps::*;
11pub mod named_partitionings;
12pub(crate) use named_partitionings::*;
13pub mod repeat;
14pub(crate) use repeat::*;
15pub mod error_handling;
16pub(crate) use error_handling::*;