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

Function atanh

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

Source from the content-addressed store, hash-verified

143
144#[plugin_fn]
145fn atanh(x: f64) -> Result<f64> { if x <= -1.0 || x >= 1.0 { return Err(dom()); } Ok(libm::atanh(x)) }
146
147/* Angular conversion */
148

Callers

nothing calls this directly

Calls 1

domFunction · 0.70

Tested by

no test coverage detected