I find myself wanting to do something like
|> lib.filter (lib.ne "default.nix")
Instead of
|> lib.filter (path: path != "default.nix")
I’m hardly a functional programming expert. Am I missing an obvious reason neither builtins
nor lib
have these functions, or did I simply miss them?