Skip to main content

reqlang_expr/
span.rs

1use std::ops::Range;
2
3pub type Span = Range<usize>;
4pub type Spanned<T> = (T, Span);