| 337 | |
| 338 | _FORCE_INLINE_ char32_t get(int p_index) const { return _cowdata.get(p_index); } |
| 339 | _FORCE_INLINE_ void set(int p_index, const char32_t &p_elem) { _cowdata.set(p_index, p_elem); } |
| 340 | |
| 341 | /// Resizes the string. The given size must include the null terminator. |
| 342 | /// New characters are not initialized, and should be set by the caller. |
no outgoing calls
no test coverage detected