ideas-1.1: Feedback services for intelligent tutoring systems

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

Ideas.Common.Library

Description

Exports most from package Common

Synopsis

Documentation

failS :: Strategy aSource

Alias for strategy combinator fail

notS :: IsStrategy f => f a -> Strategy aSource

Alias for strategy combinator not

repeatS :: IsStrategy f => f a -> Strategy aSource

Alias for strategy combinator repeat

replicateS :: IsStrategy f => Int -> f a -> Strategy aSource

Alias for strategy combinator replicate

sequenceS :: IsStrategy f => [f a] -> Strategy aSource

Alias for strategy combinator sequence

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

Alias for strategy combinator until