dhall-nix-lib/Any/package.dhall

28 lines
795 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
, mul = ./mul.dhall nix
, div = ./div.dhall nix
, add = ./add.dhall nix
, sub = ./sub.dhall nix
, stringConcat = ./stringConcat.dhall nix
, not = ./not.dhall nix
, update = ./update.dhall nix
, lt = ./lt.dhall nix
, lte = ./lte.dhall nix
, gt = ./gt.dhall nix
, gte = ./gt.dhall nix
, eq = ./eq.dhall nix
, neq = ./neq.dhall nix
, land = ./land.dhall nix
, lor = ./lor.dhall nix
, impl = ./impl.dhall nix
}