| 589 | |
| 590 | // PyObject* PyNumber_And( PyObject *o1, PyObject *o2) |
| 591 | template <class T> static FixedArray2D<T> operator & (const FixedArray2D<T> &a0, const FixedArray2D<T> &a1) { return apply_array2d_array2d_binary_op<op_bitand,T,T,T>(a0,a1); } |
| 592 | template <class T> static FixedArray2D<T> operator & (const FixedArray2D<T> &a0, const T &v1) { return apply_array2d_scalar_binary_op<op_bitand,T,T,T>(a0,v1); } |
| 593 | template <class T> static FixedArray2D<T> operator & (const T &v1, const FixedArray2D<T> &a0) { return a0&v1; } |
| 594 |
nothing calls this directly
no outgoing calls
no test coverage detected