You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of the Functors and most of the Drains have modes that accept predicates and return functions. It should be possible to adjust these to do the same when passed containers with data. Here is an example of what that might look like from the FunctionalToolsTests.h
const auto SelectFromOneToTen = Select(OneToTen);
TEST("SelectAutoCurriedOnData<Implicit>(OneToTen)", OneToTenOnlyEven == SelectFromOneToTen(IsEven))
The text was updated successfully, but these errors were encountered:
All of the Functors and most of the Drains have modes that accept predicates and return functions. It should be possible to adjust these to do the same when passed containers with data. Here is an example of what that might look like from the FunctionalToolsTests.h
The text was updated successfully, but these errors were encountered: