| 324 | // PyObject* PyNumber_TrueDivide( PyObject *o1, PyObject *o2) |
| 325 | // PyObject* PyNumber_Remainder( PyObject *o1, PyObject *o2) |
| 326 | template <class T> static FixedMatrix<T> operator % (const FixedMatrix<T> &a0, const FixedMatrix<T> &a1) { return apply_matrix_matrix_binary_op<op_mod,T,T,T>(a0,a1); } |
| 327 | template <class T> static FixedMatrix<T> operator % (const FixedMatrix<T> &a0, const T &v1) { return apply_matrix_scalar_binary_op<op_mod,T,T,T>(a0,v1); } |
| 328 | // no reversed scalar%matrix remainder - no meaning |
| 329 |
nothing calls this directly
no outgoing calls
no test coverage detected