|
|
@@ -61,7 +61,10 @@ namespace bx
|
|
|
constexpr StringView(const StringLiteral& _str);
|
|
|
|
|
|
///
|
|
|
- StringView(const StringView& _rhs, int32_t _start = 0, int32_t _len = INT32_MAX);
|
|
|
+ StringView(const StringView& _rhs);
|
|
|
+
|
|
|
+ ///
|
|
|
+ StringView(const StringView& _rhs, int32_t _start, int32_t _len);
|
|
|
|
|
|
///
|
|
|
StringView& operator=(const char* _rhs);
|
|
|
@@ -88,7 +91,10 @@ namespace bx
|
|
|
void set(const char* _ptr, const char* _term);
|
|
|
|
|
|
///
|
|
|
- void set(const StringView& _str, int32_t _start = 0, int32_t _len = INT32_MAX);
|
|
|
+ void set(const StringView& _str);
|
|
|
+
|
|
|
+ ///
|
|
|
+ void set(const StringView& _str, int32_t _start, int32_t _len);
|
|
|
|
|
|
///
|
|
|
void clear();
|