Skip to content

v0.9.3 - IGrid.Columns and EnumerableUtils.ChunkWhile

Compare
Choose a tag to compare
@Nixill Nixill released this 07 Dec 18:07
· 125 commits to master since this release
  • 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())).