aboutsummaryrefslogtreecommitdiff
path: root/doc/manual
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-12-03 13:21:14 +0100
committerGitHub <noreply@github.com>2021-12-03 13:21:14 +0100
commit2e606e87c44a8dc42664f8938eac1d4b63047dd6 (patch)
treebcb17ea5f7b3ea186a7e95693b638b4c4b93a699 /doc/manual
parent6db9ca8ca47107cb2826d31fa6c0afbada5ece46 (diff)
parent90700736c7744b97ab69a4fadcd56fa242ec617f (diff)
Merge pull request #5715 from Infinisil/groupBy-primop
Introduce `builtins.groupBy` primop
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/src/release-notes/rl-next.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md
index 26c7d2cce..a6b22dfa7 100644
--- a/doc/manual/src/release-notes/rl-next.md
+++ b/doc/manual/src/release-notes/rl-next.md
@@ -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.