lib.lists.foldl': Remove fallback
Nix 2.3, the minimum Nix version supported by Nixpkgs, has `builtins.foldl'` already.
This commit is contained in:
parent
cef748b8bc
commit
7a0b5c36c9
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ rec {
|
||||||
|
|
||||||
Type: foldl' :: (b -> a -> b) -> b -> [a] -> b
|
Type: foldl' :: (b -> a -> b) -> b -> [a] -> b
|
||||||
*/
|
*/
|
||||||
foldl' = builtins.foldl' or foldl;
|
foldl' = builtins.foldl';
|
||||||
|
|
||||||
/* Map with index starting from 0
|
/* Map with index starting from 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue