diff options
Diffstat (limited to 'include/jau/string_util.hpp')
-rw-r--r-- | include/jau/string_util.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/jau/string_util.hpp b/include/jau/string_util.hpp index f7084e1..6673171 100644 --- a/include/jau/string_util.hpp +++ b/include/jau/string_util.hpp @@ -40,6 +40,12 @@ namespace jau { + /** @defgroup StringUtils String Utilities + * String utilities for type conversion and manipulation. + * + * @{ + */ + /** * Returns a C++ String taken from buffer with maximum length of min(max_len, max_len). * <p> @@ -251,6 +257,8 @@ namespace jau { return "jau::to_string<T> not available for "+type_cue<value_type>::print("unknown", TypeTraitGroup::ALL); } + /**@}*/ + } // namespace jau /** \example test_intdecstring01.cpp |