(&self, scope: Scope<'_>)
| 151 | } |
| 152 | |
| 153 | fn exec(&self, scope: Scope<'_>) -> CallResult<()> { |
| 154 | debug_assert_eq!(1, scope.nargs()); |
| 155 | let value = scope.get_double(0); |
| 156 | scope.return_double(value.abs()) |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | /// The `ACOS` function. |
nothing calls this directly
no test coverage detected