22 lines
706 B
Text
22 lines
706 B
Text
|
λ(nix : ../NixPrelude.dhall) →
|
||
|
{ Type = Double
|
||
|
, add = ./add.dhall nix
|
||
|
, clamp = ./clamp.dhall nix
|
||
|
, divide = ./divide.dhall nix
|
||
|
, equal = ./equal.dhall nix
|
||
|
, fromAny = ./fromAny.dhall nix
|
||
|
, greaterThan = ./greaterThan.dhall nix
|
||
|
, greaterThanEqual = ./greaterThanEqual.dhall nix
|
||
|
, lessThan = ./lessThan.dhall nix
|
||
|
, lessThanEqual = ./lessThanEqual.dhall nix
|
||
|
, multiply = ./multiply.dhall nix
|
||
|
, negate = ./negate.dhall nix
|
||
|
, negative = ./negative.dhall nix
|
||
|
, nonNegative = ./nonNegative.dhall nix
|
||
|
, nonPositive = ./nonPositive.dhall nix
|
||
|
, positive = ./positive.dhall nix
|
||
|
, show = ./show.dhall
|
||
|
, subtract = ./subtract.dhall nix
|
||
|
, toInteger = ./toInteger.dhall nix
|
||
|
}
|