Nano
A C++ template metaprogramming library
|
Finds the indices of the elements in the first list which are not present in the second list and returns a list of the index values. For example, if there are 2 lists:
[ 2, 3, 1, 4 ] and [ 4, 5, 2 ]
the returned list will be:
[ 1, 3 ].
More...
#include <list_functions.hpp>
Finds the indices of the elements in the first list which are not present in the second list and returns a list of the index values. For example, if there are 2 lists:
[ 2, 3, 1, 4 ] and [ 4, 5, 2 ]
the returned list will be:
[ 1, 3 ].
List1 | The list to get the indices of |
List2 | The list to check for elements against |