| 31 | } |
| 32 | |
| 33 | array histequal(const array& in, const array& hist) { |
| 34 | return histEqual(in, hist); |
| 35 | } |
| 36 | array histEqual(const array& in, const array& hist) { |
| 37 | af_array temp = 0; |
| 38 | AF_THROW(af_hist_equal(&temp, in.get(), hist.get())); |
nothing calls this directly
no test coverage detected