1
2
3
4
5
6
7
8
9
10
//! # Modeling mathematical intervals

use crate::set::contiguous_integer_set::ContiguousIntegerSet;

pub mod trait_impl;
pub mod traits;

pub type IntInterval<T> = ContiguousIntegerSet<T>;

pub type I64Interval = ContiguousIntegerSet<i64>;