Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. tryRead :: forall (m :: Type -> Type) a e . (Monad m, Read a) => e -> String -> ExceptT e m a

    errors Control.Error.Safe

    A read that fails in the ExceptT monad

  2. peekRead :: Read a => Peeker e a

    hslua-marshalling HsLua.Marshalling

    Retrieves a value by getting a String from Lua, then using readMaybe to convert the String into a Haskell value.

  3. peekRead :: Read a => Peeker e a

    hslua-marshalling HsLua.Marshalling.Peekers

    Retrieves a value by getting a String from Lua, then using readMaybe to convert the String into a Haskell value.

  4. PwRead :: PemPasswordRWState

    HsOpenSSL OpenSSL.PEM

    The callback was called to get a password to read something encrypted.

  5. WantRead :: SSLResult a

    HsOpenSSL OpenSSL.Session

    needs more data from the network

  6. lazyRead :: SSL -> IO ByteString

    HsOpenSSL OpenSSL.Session

    Lazily read all data until reaching EOF. If the connection dies without a graceful SSL shutdown, an exception is raised.

  7. tryRead :: SSL -> Int -> IO (SSLResult ByteString)

    HsOpenSSL OpenSSL.Session

    Try to read the given number of bytes from an SSL connection without blocking. NOTE: The returned bytestring could be shorter than the size requested, see: https://www.openssl.org/docs/man3.0/man3/SSL_read.html

  8. tryReadPtr :: SSL -> Ptr a -> Int -> IO (SSLResult Int)

    HsOpenSSL OpenSSL.Session

    Try to read some data into a raw pointer buffer, without blocking.

  9. onreadystatechange_ :: Text -> Attribute

    lucid Lucid.Html5

    The onreadystatechange attribute.

  10. midspread :: Vector v Double => ContParam -> Int -> v Double -> Double

    statistics Statistics.Quantile

    O(n·log n). Estimate the range between q-quantiles 1 and q-1 of a sample x, using the continuous sample method with the given parameters. For instance, the interquartile range (IQR) can be estimated as follows:

    midspread medianUnbiased 4 (U.fromList [1,1,2,2,3])
    ==> 1.333333
    

Page 493 of many | Previous | Next