Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dylan-sutton-chavez/edge-python
/ pow10
Function
pow10
compiler/src/modules/vm/handlers/format.rs:422–426 ·
view source on GitHub ↗
(n: usize)
Source
from the content-addressed store, hash-verified
420
}
421
422
fn pow10(n: usize) -> f64 {
423
let mut r = 1.0f64;
424
for _ in 0..n { r *= 10.0; }
425
r
426
}
427
fn itoa_str(i: i64) -> String {
428
let mut b = itoa::Buffer::new(); b.format(i).to_string()
429
}
Callers
1
fixed
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected