| Safe Haskell | Safe-Inferred | 
|---|---|
| Language | Haskell2010 | 
Bio.MAE
Contents
Synopsis
- data Block = Block {}
 - class FromMaeValue a where
- fromMaeValue :: MaeValue -> Maybe a
 - unsafeFromMaeValue :: MaeValue -> a
 
 - data Mae = Mae {}
 - data MaeValue
 - data Table = Table {}
 - fromFile :: (MonadFail m, MonadIO m) => FilePath -> m Mae
 - fromText :: Text -> Either Text Mae
 - modelsFromMaeText :: Text -> Either Text (Vector Model)
 - modelsFromMaeFile :: MonadIO m => FilePath -> m (Either Text (Vector Model))
 - maeP :: Parser Mae
 
Documentation
class FromMaeValue a where Source #
Minimal complete definition
Instances
| FromMaeValue Text Source # | |
Defined in Bio.MAE.Type  | |
| FromMaeValue Bool Source # | |
Defined in Bio.MAE.Type  | |
| FromMaeValue Char Source # | |
Defined in Bio.MAE.Type  | |
| FromMaeValue Float Source # | |
Defined in Bio.MAE.Type  | |
| FromMaeValue Int Source # | |
Defined in Bio.MAE.Type  | |
Constructors
| IntMaeValue Int | |
| RealMaeValue Float | |
| StringMaeValue Text | |
| BoolMaeValue Bool | |
| Absent |