Description
This is a great project and I've used it in a handful of Rust applications. Thanks!
There is one feature from the OCaml tools (ocamllex
and ocamlyacc
) have that I found convenient. In the code that ocamlyacc
generates, all the grammar rules create functions you can call (if you need to parse a subset of the grammar.)
For instance, I'm working on a project that uses a string to describe data acquisition. There's a "name" field, optional range specification, option field names, and a field for the event on which to sample. All of that is straightforward to implement. However, we also have an API which would like just the event portion and another API that just wants the device name.
We could have a struct with a bunch of Option
fields, but I'd rather be able to have Event
as a parameter to a function.
If this feature would be too disruptive, I wonder how others would solve this with the current tools.