Crate snacks

Source
Expand description

This crate includes more parser combinators to use with nom.

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.
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.