MCPcopy Create free account
hub / github.com/pybind/pybind11 / operator==

Method operator==

include/pybind11/numpy.h:824–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected