| 199 | ASMJIT_INLINE_NODEBUG const char* data() const noexcept { return is_large_or_external() ? _large.data : _small.data; } |
| 200 | |
| 201 | [[nodiscard]] |
| 202 | ASMJIT_INLINE_NODEBUG char* begin() noexcept { return data(); } |
| 203 | |
| 204 | [[nodiscard]] |
| 205 | ASMJIT_INLINE_NODEBUG const char* begin() const noexcept { return data(); } |