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