- Documentation and logic fixes for various structures

This commit is contained in:
2025-12-17 12:40:10 -05:00
parent aee4e340dd
commit e7503ed92f
28 changed files with 1179 additions and 474 deletions

View File

@@ -221,8 +221,7 @@ public:
}
///
/// \brief Data Access
/// \returns A const qualified pointer to the underlying allocation
/// \returns A pointer to the underlying allocation
constexpr char* data() {
return _str;
}
@@ -236,6 +235,7 @@ public:
///
/// \brief Implicit Dereference Cast
/// \returns A const qualified pointer to the underlying allocation
constexpr operator const char*() const {
return _cstr;
}