24 lines
701 B
Text
24 lines
701 B
Text
|
λ(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
|
||
|
}
|