chonk 0.1.0

A lightweight parser combinator framework.
Documentation

Chonk 0.1

A lightweight parser combinator framework.

Usage

use chonk::prelude::*;

if is("abc").test("abcd") {
    println!("It matches!");
}