Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 761 Bytes

window-left.md

File metadata and controls

21 lines (14 loc) · 761 Bytes

WindowLeft

Creates a left-aligned sliding window over the source sequence of a given size.

from w in Enumerable.Range(1, 5)
                    .WindowLeft(3)
select $"AVG({string.Join(",", w)}) = {w.Average()}"

For more details, see the documentation.


✏ Edit this page if you see a typo or wish to contribute an improvement. Alternatively, you can also report an issue you see.