dhall-nix-lib/Integer/package.dhall

34 lines
967 B
Text
Raw Normal View History

2022-09-01 08:05:34 +00:00
λ(nix : ../NixPrelude.dhall) →
{ Type = Integer
, abs = ./abs.dhall
, add = ./add.dhall
, build = ./build.dhall
2022-09-01 08:05:34 +00:00
, clamp = ./clamp.dhall
, divide = ./divide.dhall nix
, equal = ./equal.dhall
, fold = ./fold.dhall
2022-09-01 08:05:34 +00:00
, fromAny = ./fromAny.dhall nix
, greaterThan = ./greaterThan.dhall
, greaterThanEqual = ./greaterThanEqual.dhall
, isZero = ./isZero.dhall
2022-09-01 08:05:34 +00:00
, lessThan = ./lessThan.dhall
, lessThanEqual = ./lessThanEqual.dhall
, listMax = ./listMax.dhall nix
, listMin = ./listMin.dhall nix
, max = ./max.dhall
, min = ./min.dhall
2022-09-01 08:05:34 +00:00
, multiply = ./multiply.dhall
, negate = ./negate.dhall
, negative = ./negative.dhall
, nonNegative = ./nonNegative.dhall
, nonPositive = ./nonPositive.dhall
, positive = ./positive.dhall
, product = ./product.dhall
2022-09-01 08:05:34 +00:00
, show = ./show.dhall
, sort = ./sort.dhall
2022-09-01 08:05:34 +00:00
, subtract = ./subtract.dhall
, sum = ./sum.dhall
2022-09-01 08:05:34 +00:00
, toDouble = ./toDouble.dhall
, toNatural = ./toNatural.dhall
}