(inputs: &[Box<dyn Value>])
| 215 | } |
| 216 | |
| 217 | pub fn numeric_cos(inputs: &[Box<dyn Value>]) -> Box<dyn Value> { |
| 218 | let float_value = inputs[0].as_float().unwrap(); |
| 219 | Box::new(FloatValue { |
| 220 | value: f64::cos(float_value), |
| 221 | }) |
| 222 | } |
| 223 | |
| 224 | pub fn numeric_acos(inputs: &[Box<dyn Value>]) -> Box<dyn Value> { |
| 225 | let float_value = inputs[0].as_float().unwrap(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…