Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. foreignMem :: PrimType ty => FinalPtr ty -> CountOf ty -> UArray ty

    basement Basement.UArray

    No documentation available.

  2. forceTimeHead :: C time => T time body -> T time body

    event-list Data.EventList.Relative.TimeTime

    No documentation available.

  3. forAllValid :: (Show a, GenValid a, Testable prop) => (a -> prop) -> Property

    genvalidity-property Test.Validity.Property

    No documentation available.

  4. forAllValid :: (Show a, GenValid a, Testable prop) => (a -> prop) -> Property

    genvalidity-property Test.Validity.Property.Utils

    No documentation available.

  5. formatter :: GenericHandler a -> LogFormatter (GenericHandler a)

    hslogger System.Log.Handler.Simple

    No documentation available.

  6. forceMatrix :: Matrix a -> Matrix a

    matrix Data.Matrix

    O(rows*cols). Similar to force. It copies the matrix content dropping any extra memory. Useful when using submatrix from a big matrix.

  7. forkServer :: HostName -> ServiceName -> Int -> Bool -> (SomeException -> IO ()) -> (SomeException -> IO ()) -> (IO () -> (Socket, SockAddr) -> IO ()) -> IO (ServiceName, ThreadId)

    network-transport-tcp Network.Transport.TCP.Internal

    Start a server at the specified address. This sets up a server socket for the specified host and port. Exceptions thrown during setup are not caught. Once the socket is created we spawn a new thread which repeatedly accepts incoming connections and executes the given request handler in another thread. If any exception occurs the accepting thread terminates and calls the terminationHandler. Threads spawned for previous accepted connections are not killed. This exception may occur because of a call to accept, or because the thread was explicitly killed. The request handler is not responsible for closing the socket. It will be closed once that handler returns. Take care to ensure that the socket is not used after the handler returns, or you will get undefined behavior (the file descriptor may be re-used). The return value includes the port was bound to. This is not always the same port as that given in the argument. For example, binding to port 0 actually binds to a random port, selected by the OS.

  8. forceOutput :: ListLikeProcessIO text char => text -> IO text

    process-extras System.Process.Common

    No documentation available.

  9. forceOutput :: ListLikeProcessIO text char => text -> IO text

    process-extras System.Process.ListLike

    No documentation available.

  10. formToQuery :: (QueryParam param, Monoid param, ToForm f) => f -> param

    req Network.HTTP.Req

    Construct query parameters from a ToForm instance. This function produces the same query params as urlEncodeAsFormStable. Note that Form doesn't have the concept of parameters with the empty value (i.e. what you can get by key =: ""). If the value is empty, it will be encoded as a valueless parameter (i.e. what you can get by queryFlag key).

Page 50 of many | Previous | Next