ยค Cont

Monadic style

Types

type Cont c a = (a -> c) -> c

Description

Cont is used to shorten type signatures for continuation style combinators.

Bugs

This type synonym should probably be removed, since it is more confusing than helpful.