ideas-1.6: Feedback services for intelligent tutoring systems

Maintainerbastiaan.heeren@ou.nl
Stabilityprovisional
Portabilityportable (depends on ghc)
Safe HaskellNone
LanguageHaskell98

Ideas.Common.Library

Description

Exports most from package Common

Synopsis

Documentation

failS :: Strategy a Source #

Alias for strategy combinator fail

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

untilS :: IsStrategy f => (a -> Bool) -> f a -> Strategy a Source #

Alias for strategy combinator until

data Some f Source #

Constructors

Some (f a)