You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
904 B
C++
37 lines
904 B
C++
#ifndef OPENMW_COMPONENTS_MISC_ALGORITHM_H
|
|
#define OPENMW_COMPONENTS_MISC_ALGORITHM_H
|
|
|
|
#include <iterator>
|
|
#include <type_traits>
|
|
|
|
namespace Misc
|
|
{
|
|
template <typename Iterator, typename BinaryPredicate, typename Function>
|
|
inline Iterator forEachUnique(Iterator begin, Iterator end, BinaryPredicate predicate, Function function)
|
|
{
|
|
static_assert(
|
|
std::is_base_of_v<
|
|
std::forward_iterator_tag,
|
|
typename std::iterator_traits<Iterator>::iterator_category
|
|
>
|
|
);
|
|
if (begin == end)
|
|
return begin;
|
|
function(*begin);
|
|
auto last = begin;
|
|
++begin;
|
|
while (begin != end)
|
|
{
|
|
if (!predicate(*begin, *last))
|
|
{
|
|
function(*begin);
|
|
last = begin;
|
|
}
|
|
++begin;
|
|
}
|
|
return begin;
|
|
}
|
|
}
|
|
|
|
#endif
|