Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type
ArgumentConsumer a = String -> [String] -> aALUT Sound.ALUT.Initialization No documentation available.
asum :: Alternative m => [m a] -> m aAgda Agda.Utils.List A version of asum that avoids a final empty. It is right-folding just like asum. Precondition: the right-unit law holds, i.e. m | A.empty = m.
asum1 :: Alternative m => m a -> [m a] -> m aAgda Agda.Utils.List A right-folding asum for nonempty lists, never producing empty.
msum :: (Foldable t, MonadPlus m) => t (m a) -> m aAgda Agda.Utils.Monad The sum of a collection of actions using (<|>), generalizing concat. msum is just like asum, but specialised to MonadPlus.
Examples
Basic usage, using the MonadPlus instance for Maybe:>>> msum [Just "Hello", Nothing, Just "World"] Just "Hello"
parseClustalSummary :: String -> Either ParseError ClustalSummaryClustalParser Biobase.Clustal.Import Parse Clustal summary (printed to STDOUT) from String
readClustalSummary :: String -> IO (Either ParseError ClustalSummary)ClustalParser Biobase.Clustal.Import Parse Clustal summary (printed to STDOUT) from file
-
ClustalParser Biobase.Clustal.Types Data type for clustal summary, containing information about the alignment process, usually printed to STDOUT
-
ClustalParser Biobase.Clustal.Types No documentation available.
-
ClustalParser Biobase.Clustal.Types No documentation available.
GroupSummary :: Int -> Maybe Int -> Maybe Int -> GroupSummaryClustalParser Biobase.Clustal.Types No documentation available.