1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

Merge pull request #5715 from Infinisil/groupBy-primop

Introduce `builtins.groupBy` primop
This commit is contained in:
Eelco Dolstra 2021-12-03 13:21:14 +01:00 committed by GitHub
commit 2e606e87c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 55 additions and 0 deletions

View file

@ -5,3 +5,6 @@
* `nix develop` now has a flag `--unpack` to run `unpackPhase`.
* Lists can now be compared lexicographically using the `<` operator.
* New built-in function: `builtins.groupBy`, with the same functionality as
Nixpkgs' `lib.groupBy`, but faster.