| Copyright | (c) 2015-2017 Rudy Matela |
|---|---|
| License | 3-Clause BSD (see the file LICENSE) |
| Maintainer | Rudy Matela <rudy@matela.com.br> |
| Safe Haskell | None |
| Language | Haskell2010 |
Test.LeanCheck.Function.CoListable
Description
This module is part of LeanCheck, a simple enumerative property-based testing library.
This module exports a Listable instance for function enumeration by means
of a CoListable typeclass.
This module does not currently work, it it just a sketch and a stub.
Documentation
class CoListable a where Source #
Minimal complete definition
Instances
| CoListable Bool Source # | |
| CoListable Int Source # | |
| CoListable () Source # | |
| CoListable a => CoListable [a] Source # | |
| CoListable a => CoListable (Maybe a) Source # | |
| (CoListable a, CoListable b) => CoListable (Either a b) Source # | |
alts1 :: CoListable a => [[b]] -> [[a -> b]] Source #
alts2 :: (CoListable a, CoListable b) => [[c]] -> [[a -> b -> c]] Source #
alts3 :: (CoListable a, CoListable b, CoListable c) => [[d]] -> [[a -> b -> c -> d]] Source #
ftiers :: (CoListable a, Listable b) => [[a -> b]] Source #