Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. unsafeRead :: (PrimMonad prim, PrimType ty) => MUArray ty (PrimState prim) -> Offset ty -> prim ty

    basement Basement.UArray

    read from a cell in a mutable array without bounds checking. Reading from invalid memory can return unpredictable and invalid values. use read if unsure.

  2. unsafeRead :: (PrimMonad prim, PrimType ty) => MUArray ty (PrimState prim) -> Offset ty -> prim ty

    basement Basement.UArray.Mutable

    read from a cell in a mutable array without bounds checking. Reading from invalid memory can return unpredictable and invalid values. use read if unsure.

  3. SingleThread :: ThreadingMode

    fsnotify System.FSNotify

    Use a single thread for the entire Manager. Event handler callbacks will run sequentially.

  4. ThreadPerEvent :: ThreadingMode

    fsnotify System.FSNotify

    Launch a separate thread for every event handler.

  5. ThreadPerWatch :: ThreadingMode

    fsnotify System.FSNotify

    Use a single thread for each watch (i.e. each call to watchDir, watchTree, etc.). Callbacks within a watch will run sequentially but callbacks from different watches may be interleaved.

  6. data ThreadingMode

    fsnotify System.FSNotify

    No documentation available.

  7. confThreadingMode :: WatchConfig -> ThreadingMode

    fsnotify System.FSNotify

    Threading mode to use.

  8. transportThread :: TransportInternals -> Maybe ThreadId

    network-transport-tcp Network.Transport.TCP

    The ID of the thread that listens for new incoming connections

  9. unsafeRead :: forall (v :: Type -> Type -> Type) (n :: Nat) a m . (PrimMonad m, MVector v a) => MVector v n (PrimState m) a -> Int -> m a

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

    O(1) Yield the element at a given Int position without bounds checking.

  10. unsafeRead :: forall (n :: Nat) a m . PrimMonad m => MVector n (PrimState m) a -> Int -> m a

    vector-sized Data.Vector.Mutable.Sized

    O(1) Yield the element at a given Int position without bounds checking.

Page 520 of many | Previous | Next