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.
-
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.
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.
-
criterion Criterion.Report Trim long flat tails from a KDE plot.
class GSemigroup f =>
GMonoid (f :: Type -> Type)semigroups Data.Semigroup.Generic No documentation available.
newtype
GenericSemigroupMonoid asemigroups 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))GenericSemigroupMonoid :: a -> GenericSemigroupMonoid asemigroups Data.Semigroup.Generic No documentation available.
getGenericSemigroupMonoid :: GenericSemigroupMonoid a -> asemigroups Data.Semigroup.Generic No documentation available.
-
process System.Process The platform specific type for a process identifier. This is always an integral type. Width and signedness are platform specific.
-
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.
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.