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.

  1. foldl' :: PrimType ty => (a -> ty -> a) -> a -> UArray ty -> a

    basement Basement.UArray

    No documentation available.

  2. foldl' :: (a -> CI ByteString -> ByteString -> a) -> a -> Headers -> a

    snap-core Snap.Types.Headers

    Strict left fold over all key-value pairs in the headers map. Example:

    ghci> :set -XOverloadedStrings
    ghci> import Data.Monoid
    ghci> let hdrs = H.fromList [("Accept", "text/plain"), ("Accept", "text/html")]
    ghci> let f (cntr, acc) _ val = (cntr+1, val <> ";" <> acc)
    ghci> H.foldl' f (0, "") hdrs
    (2,"text/html;text/plain;")
    

  3. foldl' :: forall (v :: Type -> Type) b a (n :: Nat) . Vector v b => (a -> b -> a) -> a -> Vector v n b -> a

    vector-sized Data.Vector.Generic.Sized

    O(n) Left fold with strict accumulator.

  4. foldl' :: forall b a (n :: Nat) . Prim b => (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Primitive.Sized

    O(n) Left fold with strict accumulator.

  5. foldl' :: forall a b (n :: Nat) . (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Sized

    O(n) Left fold with strict accumulator.

  6. foldl' :: forall b a (n :: Nat) . Storable b => (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Storable.Sized

    O(n) Left fold with strict accumulator.

  7. foldl' :: forall b a (n :: Nat) . Unbox b => (a -> b -> a) -> a -> Vector n b -> a

    vector-sized Data.Vector.Unboxed.Sized

    O(n) Left fold with strict accumulator.

  8. foldl' :: (a -> Word8 -> a) -> a -> Bytes -> a

    byteslice Data.Bytes

    Left fold over bytes, strict in the accumulator.

  9. foldl' :: (a -> Word8 -> a) -> a -> Chunks -> a

    byteslice Data.Bytes.Chunks

    Left fold over all bytes in the chunks, strict in the accumulator.

  10. foldl' :: (a -> b -> a) -> a -> EnumMap k b -> a

    enummapset Data.EnumMap.Lazy

    No documentation available.

Page 9 of many | Previous | Next