blob: 6b21322d9942c5f5a42c7d426bce9d980111fc6d (
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"
---
[W16] Warning: Found lib.zipAttrsWith
╭─[data/faster_zipattrswith.nix:3:7]
│
3 │ _ = lib.zipAttrsWith (name: values: values) [{ a = 1; } { a = 2; b = 3; }];
· ────────┬───────
· ╰───────── Prefer builtins.zipAttrsWith over lib.zipAttrsWith
───╯
[W16] Warning: Found lib.zipAttrsWith
╭─[data/faster_zipattrswith.nix:6:7]
│
6 │ _ = nixpkgs.lib.zipAttrsWith (name: values: values) [{ a = 1; } { a = 2; b = 3; }];
· ────────────┬───────────
· ╰───────────── Prefer builtins.zipAttrsWith over nixpkgs.lib.zipAttrsWith
───╯
|