Christopher Sebastian
Christopher Sebastian
Very nice PR. Thanks!
Great questions. I really haven't figured out the right way to do this yet, but I was imagining that I would have a special syntax in the expressions to represent...
Ah, the crate with the awesome expression syntax is [rclc](https://crates.io/crates/rclc) .
I should also mention that my top priority for this project is to maintain high performance. I will try my best to expand the capabilities to handle more advanced mathematical...
Great idea. One way this might be implemented is by enabling the specification of the output stream, during the 'eval' step. (Right now, it always uses stderr.) This would allow...
I want to also mention that 'print' is a bit different than other functions. It has a special syntax and it is the only function that can receive String arguments....
Hmm, that's really interesting. I guess I assumed that it would be more performant to just save/transfer the original String expression, and then re-parse it on the other side. As...
Great idea. I'll add `f32` to the list in #7 .
Thanks Adam! I'll review the changes when I get some time. They look really nice. When I review, I will mainly be thinking about whether the same thing can be...
I already have a REPL in the 'examples' directory: https://github.com/likebike/fasteval/blob/master/examples/repl.rs It can be run like this: rlwrap cargo run --release --example repl Were you thinking of something different? I'd be...