Blake-Madden

Results 4 comments of Blake-Madden

I forked a C++ version of this library that includes logic and comparison operators in case that is useful to anyone: https://github.com/Blake-Madden/tinyexpr-plusplus

For what it's worth, I have an example `LogFile` class (derived from `wxLog`): https://github.com/Blake-Madden/Wisteria-Dataviz/blob/main/src/util/logfile.cpp https://github.com/Blake-Madden/Wisteria-Dataviz/blob/main/src/util/logfile.h Maybe that could be useful for at least showing how to make your own file...

In case this helps, I've added support for these operators to the C++ version at: https://github.com/Blake-Madden/tinyexpr-plusplus

I also just added the functions `BITLSHIFT()` and `BITRSHIFT()`, which work like their counterparts in Excel. Note that if you pass a negative shift amount to `BITLSHIFT()`, then it calls...