-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Generator random test data for QuickCheck -- -- Generator random test data for QuickCheck @package quick-generator @version 0.3 module Testing.QuickGenerator -- |
--   sample $ "abcd" ??* (0,2)
--    ["","da","","","c","bc","d","d","","ab","c"]
--   
(??*) :: [a] -> (Int, Int) -> Gen [a] -- |
--   sample $ ['a'..'z'] ??* (0,2) ?* (3,3)
--     ["zc","jf","gwgob","uc","rll","jnxjjr","bycd","s","nja","cm","tu"]
--   
(?*) :: Gen [a] -> (Int, Int) -> Gen [a] -- | repeatWithInter g i (min, max) repeat g with inset -- i from min to max times. repeatWithInter :: Gen [a] -> Gen [a] -> (Int, Int) -> Gen [a] -- | Or . (.|) :: Gen a -> Gen a -> Gen a -- | Concatetion. (.++) :: Gen [a] -> Gen [a] -> Gen [a] -- | Castom elements. -- --
--   el xs =  (\x -> [x]) `fmap` elements xs   
--   
el :: [a] -> Gen [a]