kupsy 0.1.0

Some data-structures and algorithms that might be useful
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use alloc::vec::Vec;

use super::Interval;

// pub fn intersection_2_interval_iters<T>(a: &Vec<Interval<T>>, b: &Vec<Interval<T>>) -> Vec<Interval<T>>
// where
//     T: Copy + Ord
// {
//     todo!()
// }

pub fn intersection_interval_iters<T>(_input: &Vec<Vec<Interval<T>>>) -> Vec<Interval<T>>
where
    T: Copy + Ord,
{
    todo!()
}