Daniel Frey
Daniel Frey
This violates the zero-overhead-principle, as everybody would pay the price for this whether they need to information or not.
I'm well aware 😉 In fact the current development cycle is intended to achieve just that, a first tagged release. After working on taoPQ on and off for the last...
Did you see `scale`? https://github.com/taocpp/sequences#header-taoseqscalehpp
I can add the hint when I have some time. Currently, there is only `scale` as it is the only thing I encountered in practice. The problem with a library...
OK, I'll need some time as I'm quite busy.
I just found CSON, and it looks interesting. I am one of the authors of a JSON library, but our architecture allows us to parse and serialize other formats as...
A grammar will usually be only a starting point, additional rules will apply. This is even the case for the JSON grammar itself. I'll check out the grammar you wrote/linked...
A script to remove them... when they are meant to be tough to parse. I fail to see how this is a good idea. And I don't see any reason...
It looks like you just created a static stack to avoid allocations. Have you tried to use a cache like in our example at https://github.com/taocpp/PEGTL/blob/3fbf6721e8d90fb737f48f6b1c88aa782e2cd4b7/src/example/pegtl/parse_tree.cpp#L99-L160 As for the comparison to...
The question is what parts of our library you are using and where the bottlenecks are. Given the modular design of taoJSON, you could use simdjson as a parser (or...