blob: 6ff338014f8440ac059ba06c19f302ab651fbf65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
source: bin/tests/main.rs
expression: "&out"
---
[W15] Warning: Found lib.groupBy
╭─[data/faster_groupby.nix:3:7]
│
3 │ _ = lib.groupBy (x: if x > 2 then "big" else "small") [ 1 2 3 4 5 ];
· ─────┬─────
· ╰─────── Prefer builtins.groupBy over lib.groupBy
───╯
[W15] Warning: Found lib.groupBy
╭─[data/faster_groupby.nix:6:7]
│
6 │ _ = nixpkgs.lib.groupBy (x: if x > 2 then "big" else "small") [ 1 2 3 4 5 ];
· ─────────┬─────────
· ╰─────────── Prefer builtins.groupBy over nixpkgs.lib.groupBy
───╯
|