//! # Slicey
//!
//! Slicey provides two simple ways to associate data with parts of a string:
//! - [`struct@Spanned`]: Represents data and a range.
//! - [`struct@Sliced`]: Represents data, a range, and a source string.
//!
//! See their documentation for more info.
use Range;
pub use Sliced;
pub use ;
pub use Spanned;
/// Represents a range in a source text.
/// `Span` is a shorthand for a range of indices in the source, defined as `Range<usize>`.
pub type Span = ;