| 315 | */ |
| 316 | template <typename L> |
| 317 | WindowIterator<L> |
| 318 | create_window_iterator(const Window &w, const Coordinates &start, const Coordinates &end, L &&lambda_function) |
| 319 | { |
| 320 | return WindowIterator<L>(w, start, end, std::move(lambda_function)); |
| 321 | } |
| 322 | } // namespace arm_compute |
| 323 | #endif // ACL_ARM_COMPUTE_CORE_WINDOWITERATOR_H |