blob: aa11331382dd0565ad72db1d0cf0544cf20c7688 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! # Legacy range types
//!
//! The types within this module will be replaced by the types
//! [`Range`], [`RangeInclusive`], [`RangeToInclusive`], and [`RangeFrom`] in the parent
//! module, [`core::range`].
//!
//! The types here are equivalent to those in [`core::ops`].
#[doc(inline)]
pub use crate::ops::{Range, RangeFrom, RangeInclusive, RangeToInclusive};
|