MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / operator |

Function operator |

src/python/PyImath/PyImathFixedArray2D.h:601–601  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

599
600// PyObject* PyNumber_Or( PyObject *o1, PyObject *o2)
601template <class T> static FixedArray2D<T> operator | (const FixedArray2D<T> &a0, const FixedArray2D<T> &a1) { return apply_array2d_array2d_binary_op<op_bitor,T,T,T>(a0,a1); }
602template <class T> static FixedArray2D<T> operator | (const FixedArray2D<T> &a0, const T &v1) { return apply_array2d_scalar_binary_op<op_bitor,T,T,T>(a0,v1); }
603template <class T> static FixedArray2D<T> operator | (const T &v1, const FixedArray2D<T> &a0) { return a0|v1; }
604

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected