dhall-nix-lib/Double/package.dhall

22 lines
706 B
Text
Raw Normal View History

2022-08-31 18:23:13 +00:00
λ(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
}