Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. read :: forall (m :: Type -> Type) a r . (Monad m, Read a) => Stream (Of String) m r -> Stream (Of a) m r

    streaming Streaming.Prelude

    Make a stream of strings into a stream of parsed values, skipping bad cases

    >>> S.sum_ $ S.read $ S.takeWhile (/= "total") S.stdinLn :: IO Int
    1000<Enter>
    2000<Enter>
    total<Enter>
    3000
    

  2. read :: (PrimMonad prim, PrimType ty) => MutableBlock ty (PrimState prim) -> Offset ty -> prim ty

    basement Basement.Block.Mutable

    read a cell in a mutable array. If the index is out of bounds, an error is raised.

  3. read :: PrimMonad prim => MArray ty (PrimState prim) -> Offset ty -> prim ty

    basement Basement.BoxedArray

    read a cell in a mutable array. If the index is out of bounds, an error is raised.

  4. read :: (PrimMonad prim, PrimType ty) => MUArray ty (PrimState prim) -> Offset ty -> prim ty

    basement Basement.UArray.Mutable

    read a cell in a mutable array. If the index is out of bounds, an error is raised.

  5. read :: forall (v :: Type -> Type -> Type) (n :: Nat) m a . (PrimMonad m, MVector v a) => MVector v n (PrimState m) a -> Finite n -> m a

    vector-sized Data.Vector.Generic.Mutable.Sized

    O(1) Yield the element at a given type-safe position using Finite.

  6. read :: forall (n :: Nat) m a . PrimMonad m => MVector n (PrimState m) a -> Finite n -> m a

    vector-sized Data.Vector.Mutable.Sized

    O(1) Yield the element at a given type-safe position using Finite.

  7. read :: forall (n :: Nat) m a . (PrimMonad m, Prim a) => MVector n (PrimState m) a -> Finite n -> m a

    vector-sized Data.Vector.Primitive.Mutable.Sized

    O(1) Yield the element at a given type-safe position using Finite.

  8. read :: forall (n :: Nat) m a . (PrimMonad m, Storable a) => MVector n (PrimState m) a -> Finite n -> m a

    vector-sized Data.Vector.Storable.Mutable.Sized

    O(1) Yield the element at a given type-safe position using Finite.

  9. read :: forall (n :: Nat) m a . (PrimMonad m, Unbox a) => MVector n (PrimState m) a -> Finite n -> m a

    vector-sized Data.Vector.Unboxed.Mutable.Sized

    O(1) Yield the element at a given type-safe position using Finite.

  10. read :: Counter -> IO Int64

    ekg-core System.Metrics.Counter

    Get the current value of the counter.

Page 3 of many | Previous | Next