YarrPP  0.1
C++ Library for Pirates
at_each_aligned.hpp
1 #pragma once
2 
3 #include <yarr/config.hpp>
5 
6 #include <cstdint>
7 
8 namespace yarr
9 {
10 
11 template <typename... TFArgs, typename... FApply>
12 void at_each_aligned(char* first, char* last, FApply&&... transform);
13 
14 template <typename... TFArgs, typename... FApply>
15 void at_each_aligned(const char* first, const char* last, FApply&&... transform);
16 
17 }
18 
19 #include "at_each_aligned.ipp"