feat: add syntactic sugar for signal operations

This commit is contained in:
Anand Balakrishnan 2023-03-22 19:06:23 -07:00
parent 9ecba8b6b4
commit c6a05ef5b4
No known key found for this signature in database
7 changed files with 989 additions and 2 deletions

View file

@ -8,8 +8,16 @@
//! 2. [`ConstantSignal<T>`] is a signal that maintains a constant value throughtout
//! its domain, and thus, do not require interpolation and extrapolation. Moreover,
//! since they are defined over the entire time domain, they cannot be iterated over.
pub mod bool_ops;
pub mod cmp_ops;
pub mod iter;
pub mod num_ops;
pub mod traits;
mod utils;
pub use bool_ops::*;
pub use cmp_ops::*;
pub use num_ops::*;
use std::ops::{RangeFull, RangeInclusive};
use std::time::Duration;