quickcheck-quid-0.0.1.1: src/public/Test/QuickCheck/Quid.hs
module Test.QuickCheck.Quid
(
-- * The Quid type
Quid
-- * Combinators
, Size (..)
-- * Representations
-- ** Numerical representations
, Decimal (..)
, Hexadecimal (..)
-- ** String representations
, Latin (..)
)
where
import Internal.Test.QuickCheck.Quid
( Quid (..) )
import Internal.Test.QuickCheck.Quid.Combinators.Size
( Size (..) )
import Internal.Test.QuickCheck.Quid.Representations.Decimal
( Decimal (..) )
import Internal.Test.QuickCheck.Quid.Representations.Hexadecimal
( Hexadecimal (..) )
import Internal.Test.QuickCheck.Quid.Representations.Latin
( Latin (..) )