MCPcopy Index your code
hub / github.com/RustPython/RustPython / monotonic

Function monotonic

crates/vm/src/stdlib/time.rs:199–201  ·  view source on GitHub ↗
(vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

197
198 #[pyfunction]
199 fn monotonic(vm: &VirtualMachine) -> PyResult<f64> {
200 Ok(get_monotonic_time(vm)?.as_secs_f64())
201 }
202
203 #[pyfunction]
204 fn monotonic_ns(vm: &VirtualMachine) -> PyResult<u128> {

Callers

nothing calls this directly

Calls 1

get_monotonic_timeFunction · 0.85

Tested by

no test coverage detected