// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
//! Crate for working with [`Numerated`] types and their sets: [`Interval`](interval::Interval)
//! and [`IntervalsTree`](tree::IntervalsTree).
//!
//! ### Note
//! In case [`Numerated`] is implemented incorrectly for some type `T`, then this can cause
//! incorrect behavior of [`IntervalsTree`](tree::IntervalsTree) and
//! [`Interval`](interval::Interval) for `T`.
extern crate alloc;
pub use num_traits;
pub use *;