| 1 | //! Inverse square root approximation via [the Newton-Raphson method](https://en.wikipedia.org/wiki/Newton%27s_method#Square_root). |
| 2 | use crate::custom_ops::{CustomOperation, CustomOperationBody, Or}; |
| 3 | use crate::data_types::{array_type, scalar_type, Type, BIT, INT64, UINT64}; |
| 4 | use crate::data_values::Value; |
nothing calls this directly
no outgoing calls
no test coverage detected