Pythy
Pythy copied to clipboard
Having it all now: Pythy syntax for C++11
Can the syntax be improved to make the following example work? ``` AUTO_PYTHY(min)(x, y)( return x < y ? x : y; ) ```
Are there any plans to make it possible to use PYTHY as member function? As in this example: ``` #include "pythy.h" #include struct A{ int x; PYTHY(min, y)( return x...
I tried compiling a simple example: ``` #include "pythy.h" #include PYTHY(min, x, y) ( return x < y ? x : y; ) int main(int argc, char* argv[]) { std::cerr