(i: i64)
| 425 | r |
| 426 | } |
| 427 | fn itoa_str(i: i64) -> String { |
| 428 | let mut b = itoa::Buffer::new(); b.format(i).to_string() |
| 429 | } |
| 430 | fn u128_to_dec(n: u128) -> String { |
| 431 | if n == 0 { return String::from("0"); } |
| 432 | let mut out = String::new(); |
no outgoing calls
no test coverage detected