Skip to main content

int_interval_stack/
change_point.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq)]
2pub struct ChangePoint<C> {
3    pub at: C,
4    pub height_after: usize,
5}
6
7#[cfg(test)]
8pub(crate) mod test_support;