Slide the passed 1D window slice. * * If slice contains the last slice then it will remain unchanged and false will be returned. * * @param[in,out] slice Current slice, to be updated to the next slice. * * @return true if slice contains a new slice, false if slice already contained the last slice */
| 328 | * @return true if slice contains a new slice, false if slice already contained the last slice |
| 329 | */ |
| 330 | bool slide_window_slice_1D(Window &slice) const |
| 331 | { |
| 332 | return slide_window_slice<1>(slice); |
| 333 | } |
| 334 | /** Slide the passed 2D window slice. |
| 335 | * |
| 336 | * If slice contains the last slice then it will remain unchanged and false will be returned. |