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

Function acosh

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

Source from the content-addressed store, hash-verified

140
141#[plugin_fn]
142fn acosh(x: f64) -> Result<f64> { if x < 1.0 { return Err(dom()); } Ok(libm::acosh(x)) }
143
144#[plugin_fn]
145fn atanh(x: f64) -> Result<f64> { if x <= -1.0 || x >= 1.0 { return Err(dom()); } Ok(libm::atanh(x)) }

Callers

nothing calls this directly

Calls 1

domFunction · 0.70

Tested by

no test coverage detected