noir-compute 0.2.0

Network of Operators In Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod count;
pub use count::CountWindow;

#[cfg(feature = "timestamp")]
mod event_time;
#[cfg(feature = "timestamp")]
pub use event_time::EventTimeWindow;

mod processing_time;
pub use processing_time::ProcessingTimeWindow;

mod session;
pub use session::SessionWindow;

#[cfg(feature = "timestamp")]
mod transaction;
#[cfg(feature = "timestamp")]
pub use transaction::{TransactionOp, TransactionWindow};