//! A number of iterators used in Rome.
pub use MergeIterator;
pub use TransitiveIterator;
/// Iterator that gives out items in ascending order
/// This trait only indicates that the iterator works like this.
/// The implementations of the trait are responsible for ensuring that
/// items are sorted and that each value occurs only once.