| Copyright | (C) 2014 Richard Eisenberg |
|---|---|
| License | BSD-style (see LICENSE) |
| Maintainer | Ryan Scott |
| Stability | experimental |
| Portability | non-portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Data.Singletons.Prelude.Num
Contents
Description
Defines and exports promoted and singleton versions of definitions from GHC.Num.
Be warned that some of the associated type families in the PNum class
((+), (-), and (*)) clash with their counterparts for Nat in the
GHC.TypeLits module.
Synopsis
- class PNum (a :: Type) where
- class SNum a where
- (%+) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t :: a)
- (%-) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t :: a)
- (%*) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t :: a)
- sNegate :: forall (t :: a). Sing t -> Sing (Apply NegateSym0 t :: a)
- sAbs :: forall (t :: a). Sing t -> Sing (Apply AbsSym0 t :: a)
- sSignum :: forall (t :: a). Sing t -> Sing (Apply SignumSym0 t :: a)
- sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t :: a)
- type family Subtract (a :: a) (a :: a) :: a where ...
- sSubtract :: forall a (t :: a) (t :: a). SNum a => Sing t -> Sing t -> Sing (Apply (Apply SubtractSym0 t) t :: a)
- data (+@#@$) :: forall a6989586621679525420. (~>) a6989586621679525420 ((~>) a6989586621679525420 a6989586621679525420)
- data (+@#@$$) (arg6989586621679525439 :: a6989586621679525420) :: (~>) a6989586621679525420 a6989586621679525420
- type (+@#@$$$) (arg6989586621679525439 :: a6989586621679525420) (arg6989586621679525440 :: a6989586621679525420) = (+) arg6989586621679525439 arg6989586621679525440
- data (-@#@$) :: forall a6989586621679525420. (~>) a6989586621679525420 ((~>) a6989586621679525420 a6989586621679525420)
- data (-@#@$$) (arg6989586621679525443 :: a6989586621679525420) :: (~>) a6989586621679525420 a6989586621679525420
- type (-@#@$$$) (arg6989586621679525443 :: a6989586621679525420) (arg6989586621679525444 :: a6989586621679525420) = (-) arg6989586621679525443 arg6989586621679525444
- data (*@#@$) :: forall a6989586621679525420. (~>) a6989586621679525420 ((~>) a6989586621679525420 a6989586621679525420)
- data (*@#@$$) (arg6989586621679525447 :: a6989586621679525420) :: (~>) a6989586621679525420 a6989586621679525420
- type (*@#@$$$) (arg6989586621679525447 :: a6989586621679525420) (arg6989586621679525448 :: a6989586621679525420) = * arg6989586621679525447 arg6989586621679525448
- data NegateSym0 :: forall a6989586621679525420. (~>) a6989586621679525420 a6989586621679525420
- type NegateSym1 (arg6989586621679525451 :: a6989586621679525420) = Negate arg6989586621679525451
- data AbsSym0 :: forall a6989586621679525420. (~>) a6989586621679525420 a6989586621679525420
- type AbsSym1 (arg6989586621679525453 :: a6989586621679525420) = Abs arg6989586621679525453
- data SignumSym0 :: forall a6989586621679525420. (~>) a6989586621679525420 a6989586621679525420
- type SignumSym1 (arg6989586621679525455 :: a6989586621679525420) = Signum arg6989586621679525455
- data FromIntegerSym0 :: forall a6989586621679525420. (~>) Nat a6989586621679525420
- type FromIntegerSym1 (arg6989586621679525457 :: Nat) = FromInteger arg6989586621679525457
- data SubtractSym0 :: forall a6989586621679531124. (~>) a6989586621679531124 ((~>) a6989586621679531124 a6989586621679531124)
- data SubtractSym1 (a6989586621679531128 :: a6989586621679531124) :: (~>) a6989586621679531124 a6989586621679531124
- type SubtractSym2 (a6989586621679531128 :: a6989586621679531124) (a6989586621679531129 :: a6989586621679531124) = Subtract a6989586621679531128 a6989586621679531129
Documentation
class PNum (a :: Type) Source #
Associated Types
type (arg :: a) + (arg :: a) :: a infixl 6 Source #
type (arg :: a) - (arg :: a) :: a infixl 6 Source #
type (arg :: a) * (arg :: a) :: a infixl 7 Source #
type Negate (arg :: a) :: a Source #
type Abs (arg :: a) :: a Source #
type Signum (arg :: a) :: a Source #
type FromInteger (arg :: Nat) :: a Source #
Minimal complete definition
(%+), (%*), sAbs, sSignum, sFromInteger
Methods
(%+) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t :: a) infixl 6 Source #
(%-) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t :: a) infixl 6 Source #
default (%-) :: forall (t :: a) (t :: a). (Apply (Apply (-@#@$) t) t :: a) ~ Apply (Apply TFHelper_6989586621679525461Sym0 t) t => Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t :: a) Source #
(%*) :: forall (t :: a) (t :: a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t :: a) infixl 7 Source #
sNegate :: forall (t :: a). Sing t -> Sing (Apply NegateSym0 t :: a) Source #
default sNegate :: forall (t :: a). (Apply NegateSym0 t :: a) ~ Apply Negate_6989586621679525472Sym0 t => Sing t -> Sing (Apply NegateSym0 t :: a) Source #
sAbs :: forall (t :: a). Sing t -> Sing (Apply AbsSym0 t :: a) Source #
sSignum :: forall (t :: a). Sing t -> Sing (Apply SignumSym0 t :: a) Source #
sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t :: a) Source #
Instances
| SNum Nat Source # | |
Defined in Data.Singletons.Prelude.Num Methods (%+) :: forall (t :: Nat) (t :: Nat). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Nat) (t :: Nat). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Nat) (t :: Nat). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Nat). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Nat). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Nat). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Down a) Source # | |
Defined in Data.Singletons.Prelude.Num Methods (%+) :: forall (t :: Down a) (t :: Down a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Down a) (t :: Down a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Down a) (t :: Down a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Down a). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Down a). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Down a). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Identity a) Source # | |
Defined in Data.Singletons.Prelude.Identity Methods (%+) :: forall (t :: Identity a) (t :: Identity a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Identity a) (t :: Identity a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Identity a) (t :: Identity a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Identity a). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Identity a). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Identity a). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Max a) Source # | |
Defined in Data.Singletons.Prelude.Semigroup Methods (%+) :: forall (t :: Max a) (t :: Max a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Max a) (t :: Max a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Max a) (t :: Max a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Max a). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Max a). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Max a). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Min a) Source # | |
Defined in Data.Singletons.Prelude.Semigroup Methods (%+) :: forall (t :: Min a) (t :: Min a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Min a) (t :: Min a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Min a) (t :: Min a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Min a). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Min a). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Min a). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Product a) Source # | |
Defined in Data.Singletons.Prelude.Semigroup.Internal Methods (%+) :: forall (t :: Product a) (t :: Product a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Product a) (t :: Product a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Product a) (t :: Product a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Product a). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Product a). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Product a). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Sum a) Source # | |
Defined in Data.Singletons.Prelude.Semigroup.Internal Methods (%+) :: forall (t :: Sum a) (t :: Sum a). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Sum a) (t :: Sum a). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Sum a) (t :: Sum a). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Sum a). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Sum a). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Sum a). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
| SNum a => SNum (Const a b) Source # | |
Defined in Data.Singletons.Prelude.Const Methods (%+) :: forall (t :: Const a b) (t :: Const a b). Sing t -> Sing t -> Sing (Apply (Apply (+@#@$) t) t) Source # (%-) :: forall (t :: Const a b) (t :: Const a b). Sing t -> Sing t -> Sing (Apply (Apply (-@#@$) t) t) Source # (%*) :: forall (t :: Const a b) (t :: Const a b). Sing t -> Sing t -> Sing (Apply (Apply (*@#@$) t) t) Source # sNegate :: forall (t :: Const a b). Sing t -> Sing (Apply NegateSym0 t) Source # sAbs :: forall (t :: Const a b). Sing t -> Sing (Apply AbsSym0 t) Source # sSignum :: forall (t :: Const a b). Sing t -> Sing (Apply SignumSym0 t) Source # sFromInteger :: forall (t :: Nat). Sing t -> Sing (Apply FromIntegerSym0 t) Source # | |
sSubtract :: forall a (t :: a) (t :: a). SNum a => Sing t -> Sing t -> Sing (Apply (Apply SubtractSym0 t) t :: a) Source #
Defunctionalization symbols
data (+@#@$) :: forall a6989586621679525420. (~>) a6989586621679525420 ((~>) a6989586621679525420 a6989586621679525420) infixl 6 Source #
Instances
| SNum a => SingI ((+@#@$) :: TyFun a (a ~> a) -> Type) Source # | |
| SuppressUnusedWarnings ((+@#@$) :: TyFun a6989586621679525420 (a6989586621679525420 ~> a6989586621679525420) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply ((+@#@$) :: TyFun a6989586621679525420 (a6989586621679525420 ~> a6989586621679525420) -> Type) (arg6989586621679525439 :: a6989586621679525420) Source # | |
data (+@#@$$) (arg6989586621679525439 :: a6989586621679525420) :: (~>) a6989586621679525420 a6989586621679525420 infixl 6 Source #
Instances
| (SNum a, SingI d) => SingI ((+@#@$$) d :: TyFun a a -> Type) Source # | |
| SuppressUnusedWarnings ((+@#@$$) arg6989586621679525439 :: TyFun a6989586621679525420 a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply ((+@#@$$) arg6989586621679525439 :: TyFun a a -> Type) (arg6989586621679525440 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type (+@#@$$$) (arg6989586621679525439 :: a6989586621679525420) (arg6989586621679525440 :: a6989586621679525420) = (+) arg6989586621679525439 arg6989586621679525440 Source #
data (-@#@$) :: forall a6989586621679525420. (~>) a6989586621679525420 ((~>) a6989586621679525420 a6989586621679525420) infixl 6 Source #
Instances
| SNum a => SingI ((-@#@$) :: TyFun a (a ~> a) -> Type) Source # | |
| SuppressUnusedWarnings ((-@#@$) :: TyFun a6989586621679525420 (a6989586621679525420 ~> a6989586621679525420) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply ((-@#@$) :: TyFun a6989586621679525420 (a6989586621679525420 ~> a6989586621679525420) -> Type) (arg6989586621679525443 :: a6989586621679525420) Source # | |
data (-@#@$$) (arg6989586621679525443 :: a6989586621679525420) :: (~>) a6989586621679525420 a6989586621679525420 infixl 6 Source #
Instances
| (SNum a, SingI d) => SingI ((-@#@$$) d :: TyFun a a -> Type) Source # | |
| SuppressUnusedWarnings ((-@#@$$) arg6989586621679525443 :: TyFun a6989586621679525420 a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply ((-@#@$$) arg6989586621679525443 :: TyFun a a -> Type) (arg6989586621679525444 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type (-@#@$$$) (arg6989586621679525443 :: a6989586621679525420) (arg6989586621679525444 :: a6989586621679525420) = (-) arg6989586621679525443 arg6989586621679525444 Source #
data (*@#@$) :: forall a6989586621679525420. (~>) a6989586621679525420 ((~>) a6989586621679525420 a6989586621679525420) infixl 7 Source #
Instances
| SNum a => SingI ((*@#@$) :: TyFun a (a ~> a) -> Type) Source # | |
| SuppressUnusedWarnings ((*@#@$) :: TyFun a6989586621679525420 (a6989586621679525420 ~> a6989586621679525420) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply ((*@#@$) :: TyFun a6989586621679525420 (a6989586621679525420 ~> a6989586621679525420) -> Type) (arg6989586621679525447 :: a6989586621679525420) Source # | |
data (*@#@$$) (arg6989586621679525447 :: a6989586621679525420) :: (~>) a6989586621679525420 a6989586621679525420 infixl 7 Source #
Instances
| (SNum a, SingI d) => SingI ((*@#@$$) d :: TyFun a a -> Type) Source # | |
| SuppressUnusedWarnings ((*@#@$$) arg6989586621679525447 :: TyFun a6989586621679525420 a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply ((*@#@$$) arg6989586621679525447 :: TyFun a a -> Type) (arg6989586621679525448 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
type (*@#@$$$) (arg6989586621679525447 :: a6989586621679525420) (arg6989586621679525448 :: a6989586621679525420) = * arg6989586621679525447 arg6989586621679525448 Source #
data NegateSym0 :: forall a6989586621679525420. (~>) a6989586621679525420 a6989586621679525420 Source #
Instances
| SNum a => SingI (NegateSym0 :: TyFun a a -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods sing :: Sing NegateSym0 Source # | |
| SuppressUnusedWarnings (NegateSym0 :: TyFun a6989586621679525420 a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply (NegateSym0 :: TyFun a a -> Type) (arg6989586621679525451 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (NegateSym0 :: TyFun a a -> Type) (arg6989586621679525451 :: a) = Negate arg6989586621679525451 | |
type NegateSym1 (arg6989586621679525451 :: a6989586621679525420) = Negate arg6989586621679525451 Source #
data AbsSym0 :: forall a6989586621679525420. (~>) a6989586621679525420 a6989586621679525420 Source #
Instances
| SNum a => SingI (AbsSym0 :: TyFun a a -> Type) Source # | |
| SuppressUnusedWarnings (AbsSym0 :: TyFun a6989586621679525420 a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply (AbsSym0 :: TyFun a a -> Type) (arg6989586621679525453 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num | |
data SignumSym0 :: forall a6989586621679525420. (~>) a6989586621679525420 a6989586621679525420 Source #
Instances
| SNum a => SingI (SignumSym0 :: TyFun a a -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods sing :: Sing SignumSym0 Source # | |
| SuppressUnusedWarnings (SignumSym0 :: TyFun a6989586621679525420 a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply (SignumSym0 :: TyFun a a -> Type) (arg6989586621679525455 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (SignumSym0 :: TyFun a a -> Type) (arg6989586621679525455 :: a) = Signum arg6989586621679525455 | |
type SignumSym1 (arg6989586621679525455 :: a6989586621679525420) = Signum arg6989586621679525455 Source #
data FromIntegerSym0 :: forall a6989586621679525420. (~>) Nat a6989586621679525420 Source #
Instances
| SNum a => SingI (FromIntegerSym0 :: TyFun Nat a -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods | |
| SuppressUnusedWarnings (FromIntegerSym0 :: TyFun Nat a6989586621679525420 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply (FromIntegerSym0 :: TyFun Nat k2 -> Type) (arg6989586621679525457 :: Nat) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (FromIntegerSym0 :: TyFun Nat k2 -> Type) (arg6989586621679525457 :: Nat) = FromInteger arg6989586621679525457 :: k2 | |
type FromIntegerSym1 (arg6989586621679525457 :: Nat) = FromInteger arg6989586621679525457 Source #
data SubtractSym0 :: forall a6989586621679531124. (~>) a6989586621679531124 ((~>) a6989586621679531124 a6989586621679531124) Source #
Instances
| SNum a => SingI (SubtractSym0 :: TyFun a (a ~> a) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods sing :: Sing SubtractSym0 Source # | |
| SuppressUnusedWarnings (SubtractSym0 :: TyFun a6989586621679531124 (a6989586621679531124 ~> a6989586621679531124) -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply (SubtractSym0 :: TyFun a6989586621679531124 (a6989586621679531124 ~> a6989586621679531124) -> Type) (a6989586621679531128 :: a6989586621679531124) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (SubtractSym0 :: TyFun a6989586621679531124 (a6989586621679531124 ~> a6989586621679531124) -> Type) (a6989586621679531128 :: a6989586621679531124) = SubtractSym1 a6989586621679531128 | |
data SubtractSym1 (a6989586621679531128 :: a6989586621679531124) :: (~>) a6989586621679531124 a6989586621679531124 Source #
Instances
| (SNum a, SingI d) => SingI (SubtractSym1 d :: TyFun a a -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods sing :: Sing (SubtractSym1 d) Source # | |
| SuppressUnusedWarnings (SubtractSym1 a6989586621679531128 :: TyFun a6989586621679531124 a6989586621679531124 -> Type) Source # | |
Defined in Data.Singletons.Prelude.Num Methods suppressUnusedWarnings :: () Source # | |
| type Apply (SubtractSym1 a6989586621679531128 :: TyFun a a -> Type) (a6989586621679531129 :: a) Source # | |
Defined in Data.Singletons.Prelude.Num type Apply (SubtractSym1 a6989586621679531128 :: TyFun a a -> Type) (a6989586621679531129 :: a) = Subtract a6989586621679531128 a6989586621679531129 | |
type SubtractSym2 (a6989586621679531128 :: a6989586621679531124) (a6989586621679531129 :: a6989586621679531124) = Subtract a6989586621679531128 a6989586621679531129 Source #