Maintainer | bastiaan.heeren@ou.nl |
---|---|
Stability | provisional |
Portability | portable (depends on ghc) |
Safe Haskell | None |
Language | Haskell98 |
Exports most from package Common
- failS :: Strategy a
- notS :: IsStrategy f => f a -> Strategy a
- repeatS :: IsStrategy f => f a -> Strategy a
- replicateS :: IsStrategy f => Int -> f a -> Strategy a
- sequenceS :: IsStrategy f => [f a] -> Strategy a
- untilS :: IsStrategy f => (a -> Bool) -> f a -> Strategy a
- data Some f = Some (f a)
Documentation
notS :: IsStrategy f => f a -> Strategy a Source #
Alias for strategy combinator not
repeatS :: IsStrategy f => f a -> Strategy a Source #
Alias for strategy combinator repeat
replicateS :: IsStrategy f => Int -> f a -> Strategy a Source #
Alias for strategy combinator replicate
sequenceS :: IsStrategy f => [f a] -> Strategy a Source #
Alias for strategy combinator sequence