| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Control.Process.FD
Documentation
Type class for values that can be viewed as an FD.
>>>view getFD (3 :: FD)3
Minimal complete definition
class GetFD a => HasFD a where Source #
Type class for values with a lens into an FD.
>>>view fd (3 :: FD)3
Minimal complete definition
class ReviewFD a where Source #
Type class for values that can be constructed from an FD.
>>>review reviewFD (3 :: FD) :: FD3
Minimal complete definition