Returns the capacity of the string.
| 188 | |
| 189 | //! Returns the capacity of the string. |
| 190 | [[nodiscard]] |
| 191 | ASMJIT_INLINE_NODEBUG size_t capacity() const noexcept { return is_large_or_external() ? _large.capacity : size_t(kSSOCapacity); } |
| 192 | |
| 193 | //! Returns the data of the string. |
| 194 | [[nodiscard]] |
no outgoing calls