fastForEach

inline fun fastForEach(action: (InPlaceSubList<T>) -> Unit)(source)

Iterates through the windows and performs the given action on each window.

This method is faster and more efficient than List.forEach.

Parameters

action

The function to be executed for each window.