General Purpose library for Freestanding C++ and POSIX systems
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
namespace gp{
|
|
template <typename range, typename F>
|
|
void indexed_foreach(range n, F f) {
|
|
for(size_t idx = 0; idx < n.size(); ++idx)
|
|
{
|
|
f(idx, n[idx]);
|
|
}
|
|
}
|
|
|
|
template <typename range, typename F>
|
|
void foreach(range n, F f) {
|
|
for(auto& elem : n)
|
|
{
|
|
f(elem);
|
|
}
|
|
}
|
|
}
|