| Safe Haskell | Safe-Infered |
|---|
QuantLib.Instruments
- class Instrument a where
- iNPV :: a -> Double
- iErrorEstimate :: a -> Double
- iDate :: a -> LocalTime
- iIsExpired :: a -> Bool
- data Instrument a => CompositeInstrument a = CompositeInstrument (Map a Double)
- data Stock = Stock {}
Documentation
class Instrument a whereSource
Instrument type class
Instances
data Instrument a => CompositeInstrument a Source
Composite instrument is an aggregate of other instruments.
Constructors
| CompositeInstrument (Map a Double) |
Instances
| (Show a, Instrument a) => Show (CompositeInstrument a) | |
| Instrument a => Instrument (CompositeInstrument a) |