| 367 | |
| 368 | // PyObject* PyNumber_Or( PyObject *o1, PyObject *o2) |
| 369 | template <class T> static FixedMatrix<T> operator | (const FixedMatrix<T> &a0, const FixedMatrix<T> &a1) { return apply_matrix_matrix_binary_op<op_bitor,T,T,T>(a0,a1); } |
| 370 | template <class T> static FixedMatrix<T> operator | (const FixedMatrix<T> &a0, const T &v1) { return apply_matrix_scalar_binary_op<op_bitor,T,T,T>(a0,v1); } |
| 371 | template <class T> static FixedMatrix<T> operator | (const T &v1, const FixedMatrix<T> &a0) { return a0|v1; } |
| 372 |
nothing calls this directly
no outgoing calls
no test coverage detected