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.

  1. mapFile :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  2. mapFixed :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  3. mapHugetlb :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  4. mapLocked :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  5. mapNonblock :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  6. mapNoreserve :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  7. mapPrivate :: MmapSharedFlag

    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.

  8. mapShared :: MmapSharedFlag

    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..

  9. mapStack :: MmapOptionalFlag

    shared-memory MMAP

    See man mmap for a description.

  10. 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.

Page 319 of many | Previous | Next