You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added IGrid.Columns, which is an IEnumerable that enumerates columns-first over the grid.
Added EnumerableUtils.ChunkWhile, which returns varying-size chunks of the input sequence. Each individual chunk is consecutive elements that satisfy the given condition. Chunks do not include the element that breaks them. If multiple consecutive elements don't satisfy the condition, an empty chunk is returned between them.
Added EnumerableUtils.FormString, which converts an IEnumerable into a string (it is simply new string(input.ToArray())).