MCPcopy Create free account
hub / github.com/dylan-sutton-chavez/edge-python / itoa_str

Function itoa_str

compiler/src/modules/vm/handlers/format.rs:427–429  ·  view source on GitHub ↗
(i: i64)

Source from the content-addressed store, hash-verified

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

Callers 2

applyFunction · 0.85
int_to_decimal_partsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected