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