alfC
alfC
In Spirit v3 (distributed with boost 1.60) the following code doesn't compile: `double d1 = 0.0, d2 = 0.0;` `x3::phrase_parse(begin, end, x3::double_ >> x3::double_, x3::space, d1, d2);` The problem is...
...in X3. Is it not fundamental or lightweight? Is there an obvious way that permutation can be implemented by the user? (I don't know enough about grammars to tell) ```...
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...
In principle, there is no fundamental reasons that a container of `trivially_copyable` elements can not be made `trivially_copyable`. This feature can be useful for optimizing and make safe certain operations...