kupsy 0.1.0

Some data-structures and algorithms that might be useful
Documentation
1
2
3
4
5
6
7
8
9
10
use alloc::vec::Vec;

use super::Interval;

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