dhall-nix-lib/Integer/package.dhall
2022-09-01 19:37:49 +01:00

33 lines
971 B
Text

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