dhall-nix-lib/Any/package.dhall

28 lines
914 B
Text
Raw Normal View History

2022-08-31 13:18:49 +00:00
λ(nix : ../NixPrelude.dhall) →
{ Type = ./Type.dhall
, toAny = ./toAny.dhall nix
, toTypeUnchecked = ./toTypeUnchecked.dhall nix
, select = ./select.dhall nix
, selectOptional = ./selectOptional.dhall nix
, apply = ./apply.dhall nix
, negate = ./negate.dhall nix
, hasAttr = ./hasAttr.dhall nix
, listConcat = ./listConcat.dhall nix
2022-08-31 15:08:06 +00:00
, multiply = ./multiply.dhall nix
, divide = ./divide.dhall nix
2022-08-31 13:18:49 +00:00
, add = ./add.dhall nix
2022-08-31 15:08:06 +00:00
, subtract = ./subtract.dhall nix
2022-08-31 13:18:49 +00:00
, stringConcat = ./stringConcat.dhall nix
, not = ./not.dhall nix
, update = ./update.dhall nix
2022-08-31 15:08:06 +00:00
, lessThan = ./lessThan.dhall nix
, lessThanEqual = ./lessThanEqual.dhall nix
, greaterThan = ./greaterThan.dhall nix
, greaterThanEqual = ./greaterThanEqual.dhall nix
, equal = ./equal.dhall nix
, notEqual = ./notEqual.dhall nix
2022-08-31 13:18:49 +00:00
, land = ./land.dhall nix
, lor = ./lor.dhall nix
, impl = ./impl.dhall nix
}