Crate snacks

Crate snacks 

Source
Expand description

This crate includes more parser combinators to use with nom.

Traits§

ParseAnyhow

Functions§

alphanumdot0
alphanumdot1
find_all
Run the parser at each found substring.
find_all_into
Run the parser at each found substring, and push the results into the provided vector.
find_first
Run the parser at each found substring, until the parser completes successfully, then return the result.
link_char
Characters valid in a weblink
recognize_separated0
Runs the item parser interlaced by the separator parser.
recognize_separated1
Runs the item parser interlaced by the separator parser.
take_all
Takes the items from the item parser, possibly preceded by a prefix parser.
take_all_into
Takes the items from the item parser, possibly preceded by a prefix parser, and pushes the items to the provided vector.
weblink
Takes a weblink from the input.