| 2825 | std::move(inputs)); |
| 2826 | } |
| 2827 | array operator||(const array& a, const array& b) { |
| 2828 | return logical_or(a, b); |
| 2829 | } |
| 2830 | |
| 2831 | array reciprocal(const array& a, StreamOrDevice s /* = {} */) { |
| 2832 | auto dtype = at_least_float(a.dtype()); |
nothing calls this directly
no test coverage detected