userver: userver/formats/common/iterator_direction.hpp Source File
Loading...
Searching...
No Matches
iterator_direction.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/formats/common/iterator_direction.hpp
4/// @brief @copybrief formats::common::IteratorDirection
5/// @ingroup userver_universal
6
7USERVER_NAMESPACE_BEGIN
8
9namespace formats::common {
10
11/// @brief Helper to distinguish forward and reverse iterators for Value
13 kForward = 1,
14 kReverse = -1,
15};
16
17} // namespace formats::common
18
19USERVER_NAMESPACE_END