| 822 | } |
| 823 | |
| 824 | friend bool operator==(const numpy_scalar &a, const numpy_scalar &b) { |
| 825 | return a.value == b.value; |
| 826 | } |
| 827 | |
| 828 | friend bool operator!=(const numpy_scalar &a, const numpy_scalar &b) { return !(a == b); } |
| 829 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected