Crate yarpl[][src]

Expand description

yarpl, Yet Another Rust Parsing Library

A library to help with parsing.

Structs

Digits

Parsed from an Iterator pointing to one or more digits.

Just

Used by a Parser to match a specific, provided string.

Letters

Parsed from a Parser pointing to one or more alphabetic characters.

Number

Parsed from an Iterator pointing to a whole or decimal number.

Parser

A Iterator<Item = char> struct for parsing.

Spaces

Parsed from a Parser pointing to one or more whitespace characters.

Unexpected

An Error type returned from a failed parse.

Traits

Expect

Types that are Expect can be constructed from a Parser.

Type Definitions

Result

An alias for Result which is returned from methods of Parser.