pub fn to_tumbling_window<'a, T: Clone + 'a>(
stream: impl Stream<Item = T> + Unpin + 'a,
window_size: usize,
) -> impl Stream<Item = Vec<T>> + 'aExpand description
Tumbling window, waits till window of specified size is filled, emits, and starts a new window.