We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
StringSet::cbegin()
StringSet::cend()
1 parent 327e7e7 commit 7a15419Copy full SHA for 7a15419
src/evaluator/include/sourcemeta/blaze/evaluator_string_set.h
@@ -42,6 +42,8 @@ class SOURCEMETA_BLAZE_EVALUATOR_EXPORT StringSet {
42
43
inline auto begin() const -> const_iterator { return this->data.begin(); }
44
inline auto end() const -> const_iterator { return this->data.end(); }
45
+ inline auto cbegin() const -> const_iterator { return this->data.cbegin(); }
46
+ inline auto cend() const -> const_iterator { return this->data.cend(); }
47
48
private:
49
// Exporting symbols that depends on the standard C++ library is considered
0 commit comments