Skip to content

Commit 7a15419

Browse files
authored
Add StringSet::cbegin() and StringSet::cend() (#459)
Signed-off-by: Juan Cruz Viotti <[email protected]>
1 parent 327e7e7 commit 7a15419

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/evaluator/include/sourcemeta/blaze/evaluator_string_set.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ class SOURCEMETA_BLAZE_EVALUATOR_EXPORT StringSet {
4242

4343
inline auto begin() const -> const_iterator { return this->data.begin(); }
4444
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(); }
4547

4648
private:
4749
// Exporting symbols that depends on the standard C++ library is considered

0 commit comments

Comments
 (0)