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.