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. runReaderP :: forall (m :: Type -> Type) i a' a b' b r . Monad m => i -> Proxy a' a b' b (ReaderT i m) r -> Proxy a' a b' b m r

    pipes Pipes.Lift

    Run ReaderT in the base monad

  2. ThreadCPUTime :: Clock

    clock System.Clock

    The identifier of the CPU-time clock associated with the calling OS thread. For this clock, the value returned by getTime represents the amount of execution time of the current OS thread.

  3. ThreadCPUTime :: Clock

    clock System.Clock.Seconds

    The identifier of the CPU-time clock associated with the calling OS thread. For this clock, the value returned by getTime represents the amount of execution time of the current OS thread.

  4. showReadSpec :: (Show a, Eq a, Read a, Typeable a, GenValid a) => Spec

    genvalidity-hspec Test.Validity

    Standard test spec for properties of Show and Read instances for valid values Example usage:

    showReadSpec @Int
    

  5. showReadSpecOnArbitrary :: (Show a, Eq a, Read a, Typeable a, Arbitrary a) => Spec

    genvalidity-hspec Test.Validity

    Standard test spec for properties of Show and Read instances for arbitrary values Example usage:

    showReadSpecOnArbitrary @Double
    

  6. showReadSpecOnGen :: (Show a, Eq a, Read a, Typeable a) => Gen a -> String -> (a -> [a]) -> Spec

    genvalidity-hspec Test.Validity

    Standard test spec for properties of Show and Read instances for values generated by a custom generator Example usage:

    showReadSpecOnGen ((* 2) <$> genValid @Int) "even" (const [])
    

  7. showReadRoundTrip :: (Show a, Eq a, Read a, GenValid a) => Property

    genvalidity-hspec Test.Validity.Show

    showReadRoundTrip @Int
    

  8. showReadRoundTripOnArbitrary :: (Show a, Eq a, Read a, Arbitrary a) => Property

    genvalidity-hspec Test.Validity.Show

    showReadRoundTripOnArbitrary @Double
    

  9. showReadRoundTripOnGen :: (Show a, Eq a, Read a) => Gen a -> (a -> [a]) -> Property

    genvalidity-hspec Test.Validity.Show

    showReadRoundTripOnGen (abs <$> genValid :: Gen Int) (const [])
    

  10. showReadSpec :: (Show a, Eq a, Read a, Typeable a, GenValid a) => Spec

    genvalidity-hspec Test.Validity.Show

    Standard test spec for properties of Show and Read instances for valid values Example usage:

    showReadSpec @Int
    

Page 476 of many | Previous | Next