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

Function log1p

std/math/src/main/float.rs:76–76  ·  view source on GitHub ↗
(x: f64)

Source from the content-addressed store, hash-verified

74
75#[plugin_fn]
76fn log1p(x: f64) -> Result<f64> { if x <= -1.0 { return Err(dom()); } Ok(libm::log1p(x)) }
77
78/* Trigonometric */
79

Callers

nothing calls this directly

Calls 1

domFunction · 0.70

Tested by

no test coverage detected