Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
shared-memory MMAP See man mmap for a description.
-
shared-memory MMAP See man mmap for a description.
mapHugetlb :: MmapOptionalFlagshared-memory MMAP See man mmap for a description.
-
shared-memory MMAP See man mmap for a description.
mapNonblock :: MmapOptionalFlagshared-memory MMAP See man mmap for a description.
mapNoreserve :: MmapOptionalFlagshared-memory MMAP See man mmap for a description.
-
shared-memory MMAP Create a private copy-on-write mapping. Updates to the mapping are not visible to other processes mapping the same file, and are not carried through to the underlying file. It is unspecified whether changes made to the file after the mmap() call are visible in the mapped region.
-
shared-memory MMAP Share this mapping. Updates to the mapping are visible to other processes that map the file, and are carried through to the underlying file. The file may not actually be updated until msync(2) or munmap() is called..
-
shared-memory MMAP See man mmap for a description.
mapParseError :: Ord e' => (e -> e') -> ParseError s e -> ParseError s e'shellwords Text.Megaparsec.Compat Modify the custom data component in a parse error. This could be done via fmap if not for the Ord constraint.