i128 decimal render via itoa to avoid the heavier `format!` machinery on the hot path. */
(n: i128)
| 589 | |
| 590 | /* i128 decimal render via itoa to avoid the heavier `format!` machinery on the hot path. */ |
| 591 | fn i128_to_dec(n: i128) -> String { |
| 592 | let mut buf = itoa::Buffer::new(); |
| 593 | buf.format(n).to_string() |
| 594 | } |