userver: userver/formats/common/iterator_direction.hpp Source File
Loading...
Searching...
No Matches
iterator_direction.hpp
1#pragma once
2
3USERVER_NAMESPACE_BEGIN
4
5namespace formats::common {
6
7/// @brief Helper to distinguish forward and reverse iterators for Value
8enum class IteratorDirection {
9 kForward = 1,
10 kReverse = -1,
11};
12
13} // namespace formats::common
14
15USERVER_NAMESPACE_END