Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
module Network.Socket.
ByteString This module provides access to the BSD socket interface. For detailed documentation, consult your favorite POSIX socket reference. All functions communicate failures by converting the error number to an IOError. This module is made to be imported with Network.Socket like so:
import Network.Socket import Network.Socket.ByteString
-
Convenience definitions for working with ByteStrings.
module System.Posix.
ByteString POSIX.1-2008 support with ByteString file paths and environment strings. This module exports exactly the same API as System.Posix, except that all file paths and environment strings are represented by ByteString instead of String. The System.Posix API implicitly translates all file paths and environment strings using the locale encoding, whereas this version of the API does no encoding or decoding and works directly in terms of raw bytes. Note that if you do need to interpret file paths or environment strings as text, then some Unicode encoding or decoding should be applied first.
module System.Posix.Directory.
ByteString String-based POSIX directory support
module System.Posix.DynamicLinker.
ByteString Dynamic linker support through dlopen()
module System.Posix.DynamicLinker.Module.
ByteString DLOpen support, old API Derived from GModule.chs by M.Weber & M.Chakravarty which is part of c2hs I left the API more or less the same, mostly the flags are different.
module System.Posix.Env.
ByteString POSIX environment support
module System.Posix.Files.
ByteString Functions defined by the POSIX standards for manipulating and querying the file system. Names of underlying POSIX functions are indicated whenever possible. A more complete documentation of the POSIX functions together with a more detailed description of different error conditions are usually available in the system's manual pages or from http://www.unix.org/version3/online.html (free registration required). When a function that calls an underlying POSIX function fails, the errno code is converted to an IOError using errnoToIOError. For a list of which errno codes may be generated, consult the POSIX documentation for the underlying function.
module System.Posix.IO.
ByteString POSIX IO support. These types and functions correspond to the unix functions open(2), close(2), etc. For more portable functions which are more like fopen(3) and friends from stdio.h, see System.IO.
module System.Posix.Process.
ByteString POSIX process support. See also the System.Cmd and System.Process modules in the process package.