dhall-nix-lib/Function/package.dhall

19 lines
707 B
Text
Raw Normal View History

2022-09-08 18:49:47 +00:00
λ(nix : ../NixPrelude.dhall) →
2022-09-09 07:23:27 +00:00
{ composeExtensions = ./composeExtensions.dhall nix
, composeManyExtensions = ./composeManyExtensions.dhall nix
, const = ./const.dhall
, converge = ./converge.dhall nix
2022-09-08 18:49:47 +00:00
, deepSeq = ./seq.dhall nix
2022-09-09 07:23:27 +00:00
, extends = ./extends.dhall nix
, fix = (./fix.dhall nix).fix
, fixp = (./fix.dhall nix).fixp
2022-09-08 18:49:47 +00:00
, flip = ./flip.dhall
, functionArgs = ./functionArgs.dhall nix
2022-09-09 07:23:27 +00:00
, makeExtensible = ./makeExtensibleWithCustomName.dhall nix "extend"
, makeExtensibleWithCustomName = ./makeExtensibleWithCustomName.dhall nix
2022-09-08 18:49:47 +00:00
, pipe = ./pipe.dhall
, setFunctionArgs = ./setFunctionArgs.dhall nix
, seq = ./seq.dhall nix
, splitAndCompare = ./splitAndCompare.dhall
}