forked from therocode/enumerate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenumerate.hpp
59 lines (49 loc) · 1.51 KB
/
enumerate.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#pragma once
#include <type_traits>
#include <cstddef>
#include <utility>
namespace en
{
template <typename container_type>
struct enumerate_wrapper
{
using iterator_type = std::conditional_t<std::is_const_v<container_type>, typename container_type::const_iterator, typename container_type::iterator>;
using pointer_type = std::conditional_t<std::is_const_v<container_type>, typename container_type::const_pointer, typename container_type::pointer>;
using reference_type = std::conditional_t<std::is_const_v<container_type>, typename container_type::const_reference, typename container_type::reference>;
constexpr enumerate_wrapper(container_type& c): container(c)
{
}
struct enumerate_wrapper_iter
{
size_t index;
iterator_type value;
constexpr bool operator!=(const iterator_type& other) const
{
return value != other;
}
constexpr enumerate_wrapper_iter& operator++()
{
++index;
++value;
return *this;
}
constexpr std::pair<size_t, reference_type> operator*() {
return std::pair<size_t, reference_type>{index, *value};
}
};
constexpr enumerate_wrapper_iter begin()
{
return {0, std::begin(container)};
}
constexpr iterator_type end()
{
return std::end(container);
}
container_type& container;
};
template <typename container_type>
constexpr auto enumerate(container_type& c)
{
return enumerate_wrapper(c);
}
}