Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. stdConfidence :: Confidence

    tasty-quickcheck Test.Tasty.QuickCheck

    The standard parameters used by checkCoverage: certainty = 10^9, tolerance = 0.9. See Confidence for the meaning of the parameters.

  2. validateAccessors :: [String] -> String -> Either String [(String, Measured -> Maybe Double)]

    criterion Criterion.Analysis

    Given predictor and responder names, do some basic validation, then hand back the relevant accessors.

  3. tidyTails :: KDE -> KDE

    criterion Criterion.Report

    Trim long flat tails from a KDE plot.

  4. class GSemigroup f => GMonoid (f :: Type -> Type)

    semigroups Data.Semigroup.Generic

    No documentation available.

  5. newtype GenericSemigroupMonoid a

    semigroups Data.Semigroup.Generic

    An adapter newtype, suitable for DerivingVia. Its Semigroup and Monoid instances leverage the Generic-based defaults defined by gmappend and gmempty. Here is an example of how to use it:

    {-# LANGUAGE DerivingVia #-}
    import Data.Semigroup.Generic
    
    data Pair a = MkPair a a
    deriving (Semigroup, Monoid) via (GenericSemigroupMonoid (Pair a))
    

  6. GenericSemigroupMonoid :: a -> GenericSemigroupMonoid a

    semigroups Data.Semigroup.Generic

    No documentation available.

  7. getGenericSemigroupMonoid :: GenericSemigroupMonoid a -> a

    semigroups Data.Semigroup.Generic

    No documentation available.

  8. type Pid = CPid

    process System.Process

    The platform specific type for a process identifier. This is always an integral type. Width and signedness are platform specific.

  9. getCurrentPid :: IO Pid

    process System.Process

    Returns the PID (process ID) of the current process. On POSIX systems, this calls getProcessID from System.Posix.Process in the unix package. On Windows, this calls getCurrentProcessId from System.Win32.Process in the Win32 package.

  10. getPid :: ProcessHandle -> IO (Maybe Pid)

    process System.Process

    Returns the PID (process ID) of a subprocess. Nothing is returned if the handle was already closed. Otherwise a PID is returned that remains valid as long as the handle is open. The operating system may reuse the PID as soon as the last handle to the process is closed.

Page 380 of many | Previous | Next