Caelan
Caelan
I reject your concept that juggling multiple responsibilities on a single main thread (eg. simultaneously reading the process output, updating UI, handling user input and more) is more complex than...
@sheredom If you're determined to make this work, is there a reason you can't use [PeekNamedPipe](https://learn.microsoft.com/en-us/windows/win32/api/namedpipeapi/nf-namedpipeapi-peeknamedpipe)? If I'm reading the code correctly, you create a named pipe to hold the...
I actually started out with `JsonNodeType.Number` instead of Float/Int. Since JSON is based on Javascript, the only difference between int/double is whether there is a decimal. In Javascript these are...
I have updated the issue with the remaining languages and incorporated your feedback about removing the derived classes. I have kept the Int/double representations, because all of our underlying implementations...
In the event that it's helpful, I also took a stab at writing a Json parser in Fusion. I wasn't sure how hard it would be or if it would...
I don't mind, the only C/C++ parsers I have experience with is nholman and sheredom but as long as it gets the job done. What are your thoughts in general...
I think it is a good idea if we can start expanding the standard library like this with pure fusion code, rather than what we have via string building. Ideally...
- I think only GetDouble is fine, the fusion truncate/round functions are easy to use. - The benefit of a "Parse" method comes from getting some meaningful data back from...
I tried JsonElement in master, I guess the pure fusion version is not automatically emitted for C++ yet, is this planned or is it expected that I should copy that...
I don't know how we'd do it for C because I am not really a C programmer. However I think a lot of your questions don't matter for what I'm...