Nano
A C++ template metaprogramming library
|
Takes two lists, and zips the corresponding elements into a list of 2 elements if the function to determine if the elements should be zips succeeds, otherwise the elements are not zipped. More...
#include <higher_order_functions.hpp>
Takes two lists, and zips the corresponding elements into a list of 2 elements if the function to determine if the elements should be zips succeeds, otherwise the elements are not zipped.
Evaluator | A function which operates on corresponding elements from the 2 lists to determine if the elements should be zipped. |
List1 | First list for zipping. |
List2 | Second list for zipping. |
Passed | The elements which have 'passed' the functions test and have been added to the zipped list. |