MCPcopy Create free account
hub / github.com/AmrDeveloper/GQL / numeric_asin

Function numeric_asin

crates/gitql-std/src/number/mod.rs:210–215  ·  view source on GitHub ↗
(inputs: &[Box<dyn Value>])

Source from the content-addressed store, hash-verified

208}
209
210pub fn numeric_asin(inputs: &[Box<dyn Value>]) -> Box<dyn Value> {
211 let float_value = inputs[0].as_float().unwrap();
212 Box::new(FloatValue {
213 value: f64::asin(float_value),
214 })
215}
216
217pub fn numeric_cos(inputs: &[Box<dyn Value>]) -> Box<dyn Value> {
218 let float_value = inputs[0].as_float().unwrap();

Callers

nothing calls this directly

Calls 1

as_floatMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…