Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. PropertyCount :: Int -> PropertyCount

    hedgehog Hedgehog.Internal.Property

    No documentation available.

  2. newtype PropertyName

    hedgehog Hedgehog.Internal.Property

    The name of a property. Should be constructed using OverloadedStrings:

    "apples" :: PropertyName
    

  3. PropertyName :: String -> PropertyName

    hedgehog Hedgehog.Internal.Property

    No documentation available.

  4. newtype PropertyT (m :: Type -> Type) a

    hedgehog Hedgehog.Internal.Property

    The property monad transformer allows both the generation of test inputs and the assertion of expectations.

  5. PropertyT :: TestT (GenT m) a -> PropertyT (m :: Type -> Type) a

    hedgehog Hedgehog.Internal.Property

    No documentation available.

  6. data PrintPrefixIcons

    hedgehog Hedgehog.Internal.Report

    Whether to add icons to the start of important output lines or not.

  7. data Progress

    hedgehog Hedgehog.Internal.Report

    The status of a running property test.

  8. data Parallel (m :: Type -> Type) (state :: Type -> Type -> Type)

    hedgehog Hedgehog.Internal.State

    A sequential prefix of actions to execute, with two branches to execute in parallel.

  9. Parallel :: [Action m state] -> [Action m state] -> [Action m state] -> Parallel (m :: Type -> Type) (state :: (Type -> Type) -> Type)

    hedgehog Hedgehog.Internal.State

    No documentation available.

  10. module Data.ByteArray.Pack

    Simple Byte Array packer Simple example:

    > flip pack 20 $ putWord8 0x41 >> putByteString "BCD" >> putWord8 0x20 >> putStorable (42 :: Word32)
    Right (ABCD *\NUL\NUL\NUL")
    
    Original code from https://hackage.haskell.org/package/bspack generalized and adapted to run on memory, and spellchecked / tweaked. (2015-05) Copyright (c) 2014 Nicolas DI PRIMA

Page 67 of many | Previous | Next