| 307 | } |
| 308 | |
| 309 | void replace(array &a, const array &cond, const array &b) { |
| 310 | AF_THROW(af_replace(a.get(), cond.get(), b.get())); |
| 311 | } |
| 312 | |
| 313 | void replace(array &a, const array &cond, const double &b) { |
| 314 | AF_THROW(af_replace_scalar(a.get(), cond.get(), b)); |
no test coverage detected