Vicente J. Botet Escriba

Results 47 issues of Vicente J. Botet Escriba

Hi, I need a type traits to check if a _Callable_ `Fn` can be invoked with some specific parameters `Args...`and if the result is convertible to a type `R`. Something...

`id`: A trait that always returns its argument `T`. Also, a _Callable_ that always returns `T`. Other libraries use `always` or `const_` for a _Callable_ that always returns `T`. Naming...

As for Display the special operations generated by the compiler #224 discussion, the documentation will improve if we had a section describing the transformation of each featre and his limitations....

The tool take cre already of implicit noexcept for destructors https://cppinsights.io/s/f0e3aba8 Wondering if adding an it on the list of features and examples isn't a good idea.

I will suggest to start by using the existing configuration macros The examples I give are for Boost.Config BOOST_FIT_NO_EXPRESSION_SFINAE - BOOST_NO_SFINAE_EXPR BOOST_FIT_HAS_TEMPLATE_ALIAS - BOOST_NO_CXX11_TEMPLATE_ALIASES BOOST_FIT_HAS_RELAXED_CONSTEXPR - BOOST_NO_CXX14_CONSTEXPR There are others...

enhancement
review
document
code

It is not clear to me from http://pfultz2.github.io/Fit/doc/html/implicit/index.html the semantics of implicit as the T is not part of the implicit parameters ``` assert(T(implicit()(xs...)) == F()(xs...)); ``` IIUC, what you...

question
review

The example in http://pfultz2.github.io/Fit/doc/html/lazy/index.html should show the consexpr ability

bug
review
document

There are two variants of fold, left associative versus right. What about naming them `fold_left` and `fold_right`? Given an adaptor that results in a variadic function as `compress` compress:: F...

enhancement
document