yhirose
yhirose
https://github.com/yhirose/cpp-peglib#symbol-table
https://medium.com/@gvanrossum_83706/left-recursive-peg-grammars-65dab3c580e1
[cpp-httplib](https://github.com/yhirose/cpp-httplib): cross-platform HTTP server/client [cpp-peglib](https://github.com/yhirose/cpp-peglib): PEG (Parsing Expression Grammars) library Thanks!
Since I saw #186, I would like to post my implementation for utf8 support, too. It supports Emoji and CJK characters which have wide width as well. When the Unicode...
This pull request tries to fix #1478 with removing unnecessary `DataSink::is_writable()` method. This 'writable' check should be done in `DataSink::write()` with `strm.is_writable()`.
Reference from numpy: _AttributeError: module 'numpy' has no attribute 'int'. `np.int` was a deprecated alias for the builtin `int`. To avoid this error in existing code, use `int` by itself....
https://github.com/yhirose/go-peg/issues/6#issuecomment-466736815 > Plus another question, is there a way to define a Unicode string in rules? eg: > > https://stackoverflow.com/questions/30482793/golang-regexp-with-non-latin-characters > > ``` > STRING_LIT = < [\\p{L}\\d_]+> > ```...
@mol123, @sergio-nsk could you explain why there are 4 different `#if` cases which look pretty much similar to each other. Is it possible to use just one of them for...