dhall-nix-lib/Integer/package.dhall

24 lines
701 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
, clamp = ./clamp.dhall
, divide = ./divide.dhall nix
, equal = ./equal.dhall
, fromAny = ./fromAny.dhall nix
, greaterThan = ./greaterThan.dhall
, greaterThanEqual = ./greaterThanEqual.dhall
, lessThan = ./lessThan.dhall
, lessThanEqual = ./lessThanEqual.dhall
, multiply = ./multiply.dhall
, negate = ./negate.dhall
, negative = ./negative.dhall
, nonNegative = ./nonNegative.dhall
, nonPositive = ./nonPositive.dhall
, positive = ./positive.dhall
, show = ./show.dhall
, subtract = ./subtract.dhall
, toDouble = ./toDouble.dhall
, toNatural = ./toNatural.dhall
}