Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
allLibraries :: PackageDescription -> [Library]Cabal-syntax Distribution.Types.PackageDescription No documentation available.
allLibraries :: Traversal' PackageDescription LibraryCabal-syntax Distribution.Types.PackageDescription.Lens No documentation available.
allBut :: (XParser s Char -> XParser s String) -> String -> XParser s Stringhxt Text.XML.HXT.Parser.XmlTokenParser No documentation available.
allBut1 :: (XParser s Char -> XParser s String) -> (Char -> Bool) -> String -> XParser s Stringhxt Text.XML.HXT.Parser.XmlTokenParser No documentation available.
allS :: Selective f => (a -> f Bool) -> [a] -> f Boolselective Control.Selective A lifted version of all. Retains the short-circuiting behaviour.
alloca :: Storable a => FortranIO r (Ptr a)netlib-ffi Numeric.Netlib.Utility No documentation available.
allocaArray :: Storable a => Int -> FortranIO r (Ptr a)netlib-ffi Numeric.Netlib.Utility No documentation available.
allM :: (Foldable f, Monad m) => (a -> m Bool) -> f a -> m Boolrelude Relude.Foldable.Fold Monadic version of all.
>>> allM (readMaybe >=> pure . even) ["6", "10"] Just True >>> allM (readMaybe >=> pure . even) ["5", "aba"] Just False >>> allM (readMaybe >=> pure . even) ["aba", "10"] Nothing
all_ :: Monad m => (a -> Bool) -> Stream (Of a) m r -> m Boolstreaming Streaming.Prelude No documentation available.
allOne :: forall (n :: Nat) . SizeValid n => Bits nbasement Basement.Bits construct a Bits with all bits set. this function is equivalet to maxBound