Replaces the current of the string by a `c` character, repeated `n` times.
| 264 | |
| 265 | //! Replaces the current of the string by a `c` character, repeated `n` times. |
| 266 | ASMJIT_INLINE_NODEBUG Error assign_chars(char c, size_t n) noexcept { |
| 267 | return _op_chars(ModifyOp::kAssign, c, n); |
| 268 | } |
| 269 | |
| 270 | //! Replaces the current of the string by a formatted integer `i` (signed). |
| 271 | ASMJIT_INLINE_NODEBUG Error assign_int(int64_t i, uint32_t base = 0, size_t width = 0, StringFormatFlags flags = StringFormatFlags::kNone) noexcept { |