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