|
constexpr |
Simple walkthrough over all elements of a container and their coordinates.
Applies the given function object f to every elements of a given kwk::container and their current coordinates. Elements are iterated in order of the optimal memory access.
| f | Function object, to be applied to an element of c and its coordinates. The signature of the function should be equivalent to the following: void f(T&& v, std::integral auto... is);
T convertible to the container's value_type. |
| c | A kwk::container on which elements f will be applied. |
f which could have been modified.