aryth/duobound/vector/traits/
duobound_trait.rs

1use crate::types::VectorAndBound;
2
3pub trait DuoBound<T>: IntoIterator<Item=T>
4{ fn duobound(self) -> (VectorAndBound<f32>, VectorAndBound<f32>); }