| Copyright | (c) Erich Gut |
|---|---|
| License | BSD3 |
| Maintainer | zerich.gut@gmail.com |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
OAlg.Data.Proxy
Description
proxies.
Synopsis
- module Data.Proxy
- data Proxy2 (a :: k) (b :: k1) = Proxy2
- data Proxy3 (a :: k) (b :: k1) (c :: k2) = Proxy3
Documentation
module Data.Proxy
data Proxy2 (a :: k) (b :: k1) Source #
two parameterized proxy.
Constructors
| Proxy2 |
Instances
| Read (Proxy2 a b) Source # | |
| Show (Proxy2 a b) Source # | |
| Eq (Proxy2 a b) Source # | |
| Ord (Proxy2 a b) Source # | |
data Proxy3 (a :: k) (b :: k1) (c :: k2) Source #
three parameterized proxy.
Constructors
| Proxy3 |
Instances
| Read (Proxy3 a b c) Source # | |
| Show (Proxy3 a b c) Source # | |
| Eq (Proxy3 a b c) Source # | |
| Ord (Proxy3 a b c) Source # | |
Defined in OAlg.Data.Proxy | |