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
18
use alloc::vec::Vec;

use super::Interval;

// Not sure how useful this is. Maybe just use if for IntervalVec
pub fn get_length_of_intervals<T>(_input: Vec<Interval<T>>) -> Vec<T>
where
    T: Copy + Ord,
{
    todo!()
}

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