imex 0.2.1

A library/CLI for merging multiple iterators/files into one, with the optional use of an IMEx, or Iterator-Merging-Expression, for controlling the merge.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This module contains objects for representing an IMEx.
mod imex;
mod imex_val;
mod quantified_imex_val;
mod quantifier;
mod utils;

pub use self::{
    imex::IMEx, imex_val::IMExVal, quantified_imex_val::QuantifiedIMExVal, quantifier::Quantifier,
};
use utils::{IMExIterCounter, ParserCombinator};