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.
unsafeRead :: (PrimMonad prim, PrimType ty) => MUArray ty (PrimState prim) -> Offset ty -> prim tybasement 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.
unsafeRead :: (PrimMonad prim, PrimType ty) => MUArray ty (PrimState prim) -> Offset ty -> prim tybasement 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.
-
fsnotify System.FSNotify Use a single thread for the entire Manager. Event handler callbacks will run sequentially.
ThreadPerEvent :: ThreadingModefsnotify System.FSNotify Launch a separate thread for every event handler.
ThreadPerWatch :: ThreadingModefsnotify 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.
-
fsnotify System.FSNotify No documentation available.
confThreadingMode :: WatchConfig -> ThreadingModefsnotify System.FSNotify Threading mode to use.
transportThread :: TransportInternals -> Maybe ThreadIdnetwork-transport-tcp Network.Transport.TCP The ID of the thread that listens for new incoming connections
-
vector-sized Data.Vector.Generic.Mutable.Sized O(1) Yield the element at a given Int position without bounds checking.
unsafeRead :: forall (n :: Nat) a m . PrimMonad m => MVector n (PrimState m) a -> Int -> m avector-sized Data.Vector.Mutable.Sized O(1) Yield the element at a given Int position without bounds checking.