darq icon indicating copy to clipboard operation
darq copied to clipboard

A port of .NET's LINQ IEnumerable functions to Dart.

Results 4 darq issues
Sort by recently updated
recently updated
newest added

Hi, How to groupBy multiple columns?

`print([0, 1, 2].excludeAt(0))` prints `(0, 1, 2)` although `(1, 2)` is expected. `print([0, 1, 2].excludeAt(2))` throws `_TypeError` although `(0, 1)` is expected.

Using the orderBy extension doesn't work on the type `bool` Code e.g. ``` List test = [true, false, true, false]; debugPrint(test.orderBy((b) => b).toString()); ``` Result: ```flutter: (true, false, true, false)```...

I've tested this and if I OrderBy it works for the first one. If I then use .ThenBy() it ignores the first one and only orders by the thenby if...