We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f194bdf commit 210f524Copy full SHA for 210f524
1 file changed
include/endpoints_sequence.hpp
@@ -119,6 +119,7 @@ struct endpoints_sequence {
119
bool has_next() const { return m_pos < m_ptr->size(); }
120
bool has_prev() const { return m_pos > 0; }
121
uint64_t value() const { return m_val; }
122
+ uint64_t operator*() const { return value(); }
123
uint64_t position() const { return m_pos; }
124
125
void next() {
0 commit comments