hof icon indicating copy to clipboard operation
hof copied to clipboard

Higher-order functions for c++

Results 61 hof issues
Sort by recently updated
recently updated
newest added

According to [this](http://english.stackexchange.com/questions/304948/evaluable-vs-evaluatable), the word _evaluatable_ is not used frequently, and _evaluable_ might be preferable.

question
document

Oh, I believe I have found why I don't understand. The template parameters TS are not part of the function apply This ``` template constexpr auto apply(F&& f, Ts&&... xs);...

bug
question
document

I do not have access to the newer versions of MSVC, but on the older ones (e.g., 10.0), when you put your libraries into precompiled headers, tricks with globals and...

question

For example, in this: ``` struct id { template T operator()(T x) const { return x; } }; auto int_result = boost::fit::result(id()); static_assert(std::is_same::value, "Not the same type"); ``` Consider changing...

enhancement
code

In Quickstart/Adaptors it is shown how to use infix and pipable. It is not shown that two adaptors can be combined, e.g. `auto sum = pipable_adaptor();`It is just a quickstart...

bug
document

A `CONTRIBUTING.md` file at the root of the project can be useful to tell basic stuff to potential contributors, such as the branch to which pull requests should be directed....

enhancement
document