aboutsummaryrefslogtreecommitdiffstats
path: root/to_string.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'to_string.hpp')
-rw-r--r--to_string.hpp20
1 files changed, 8 insertions, 12 deletions
diff --git a/to_string.hpp b/to_string.hpp
index 21b5f48..1d88b1a 100644
--- a/to_string.hpp
+++ b/to_string.hpp
@@ -43,19 +43,15 @@ struct to_string_t {
}
}
- /**
- * Allows implicit conversion of this object to a `char *`.
- */
- constexpr operator char_type *() {
- return buf;
- }
+ // Support implicit casting to `char *` or `const char *`.
+ constexpr operator char_type *() { return buf; }
+ constexpr operator const char_type *() const { return buf; }
- /**
- * Allows implicit conversion of this object to a `const char *`.
- */
- constexpr operator const char_type *() const {
- return buf;
- }
+ // Support range-based for loops
+ constexpr auto begin() { return buf; }
+ constexpr auto begin() const { return buf; }
+ constexpr auto end() { return buf + sizeof(buf) / sizeof(buf[0]); }
+ constexpr auto end() const { return buf + sizeof(buf) / sizeof(buf[0]); }
};
/**