feat(core): add an AnySignal trait for trait objects and downcasting of signals

This commit is contained in:
Anand Balakrishnan 2023-04-16 17:16:10 -07:00
parent aa952c3151
commit a3d406f2b3
No known key found for this signature in database
2 changed files with 16 additions and 0 deletions

View file

@ -25,6 +25,7 @@ pub use cmp_ops::*;
use itertools::Itertools;
pub use num_ops::*;
use num_traits::NumCast;
pub use traits::*;
use utils::intersect_bounds;
use self::traits::LinearInterpolatable;