Appends a formatted integer `i` (unsigned).
| 327 | |
| 328 | //! Appends a formatted integer `i` (unsigned). |
| 329 | ASMJIT_INLINE_NODEBUG Error append_uint(uint64_t i, uint32_t base = 0, size_t width = 0, StringFormatFlags flags = StringFormatFlags::kNone) noexcept { |
| 330 | return _op_number(ModifyOp::kAppend, i, base, width, flags); |
| 331 | } |
| 332 | |
| 333 | //! Appends the given `data` converted to a HEX string. |
| 334 | ASMJIT_INLINE_NODEBUG Error append_hex(const void* data, size_t size, char separator = '\0') noexcept { |
no outgoing calls
no test coverage detected