1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::container::array::Array; pub struct ContinuedSets<T> where T:PartialOrd,{ points: Vec<T>, exclude_points: Vec<T>, intervals: Vec<(T,T)> } impl<T: std::cmp::PartialOrd> ContinuedSets<T>{ fn add_point(&mut self, point: T){ } }