blob: 03f024354479df6b81a67875a1c85f15b611648b [file]
//! # 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)]
#[stable(feature = "new_range_api_legacy", since = "CURRENT_RUSTC_VERSION")]
pub use crate::ops::{Range, RangeFrom, RangeInclusive, RangeToInclusive};