1use super::*;
23#[derive(Debug, Clone, Copy, PartialEq, Eq)]
4pub struct HeightRun<I>
5where
6I: IntCO,
7{
8/// Closed-open interval on which the stack height is constant.
9pub interval: I,
1011/// Stack height throughout `interval`.
12 ///
13 /// This may be zero.
14pub height: usize,
15}