Glue

Glue is a parser combinator library that is designed for parsing text based formats with speed and efficiency.

Usage

```rust use glue::prelude::*;

let input = Context::from("foobar");

match merge(oneormore(is(alphabetic))).parse(input) { Ok((input, token)) => { println!("Found: {}", token.asstr()); }, Err() => { println!("Nothing found!"); } } ```