Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
_ForallVisT :: Prism' Type ([TyVarBndrUnit], Type)lens Language.Haskell.TH.Lens No documentation available.
_RationalL :: Prism' Lit Rationallens Language.Haskell.TH.Lens No documentation available.
_StdCall :: Prism' Callconv ()lens Language.Haskell.TH.Lens No documentation available.
-
network Network.Socket If AI_ALL is specified, return all matching IPv6 and IPv4 addresses. Otherwise, this flag has no effect. (Only some platforms support this.)
pattern
MSG_WAITALL :: MsgFlagnetwork Network.Socket Wait until the requested number of bytes have been read.
sendAllTo :: SocketAddress sa => Socket -> ByteString -> sa -> IO ()network Network.Socket.Address Send data to the socket. The recipient can be specified explicitly, so the socket need not be in a connected state. Unlike sendTo, this function continues to send data until either all data has been sent or an error occurs. On error, an exception is raised, and there is no way to determine how much data, if any, was successfully sent.
sendAll :: Socket -> ByteString -> IO ()network Network.Socket.ByteString Send data to the socket. The socket must be connected to a remote socket. Unlike send, this function continues to send data until either all data has been sent or an error occurs. On error, an exception is raised, and there is no way to determine how much data, if any, was successfully sent.
sendAllTo :: Socket -> ByteString -> SockAddr -> IO ()network Network.Socket.ByteString Send data to the socket. The recipient can be specified explicitly, so the socket need not be in a connected state. Unlike sendTo, this function continues to send data until either all data has been sent or an error occurs. On error, an exception is raised, and there is no way to determine how much data, if any, was successfully sent.
sendAll :: Socket -> ByteString -> IO ()network Network.Socket.ByteString.Lazy No documentation available.
fileAllocate :: Fd -> FileOffset -> FileOffset -> IO ()unix System.Posix.Fcntl Performs posix_fallocate(2) operation on file-descriptor. Throws IOError ("unsupported operation") if platform does not provide posix_fallocate(2). (use #if HAVE_POSIX_FALLOCATE CPP guard to detect availability).