1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
pub use self::{
convenience::{
input::{Input, InputRelation},
map::ExtremaMap,
output::{CollectionOutput, DynamicOutput},
pair, Collection, Is,
},
core::{
pipes, CountMap, Dynamic, Input_, IsReduce, Observable, Op, Op_, Output, ReduceProbe,
Relation, Save, Saved,
},
feedback::{ContextTracker, CreationContext, ExecutionContext},
};
mod convenience;
mod feedback;
pub mod core;
#[cfg(test)]
mod tests;