Appends `c` character repeated `n` times.
| 317 | |
| 318 | //! Appends `c` character repeated `n` times. |
| 319 | ASMJIT_INLINE_NODEBUG Error append_chars(char c, size_t n) noexcept { |
| 320 | return _op_chars(ModifyOp::kAppend, c, n); |
| 321 | } |
| 322 | |
| 323 | //! Appends a formatted integer `i` (signed). |
| 324 | ASMJIT_INLINE_NODEBUG Error append_int(int64_t i, uint32_t base = 0, size_t width = 0, StringFormatFlags flags = StringFormatFlags::kNone) noexcept { |
no outgoing calls
no test coverage detected