vote up 0 vote down star

At the moment I'm aware of the following methods to integrate side-effects into purely functional programming languages:

  • effect systems
  • continuations
  • unique types
  • monads

Monads are often cited to be the most effective and most general way to do this.

Which other methods exist? How do they compare?

flag

75% accept rate

2 Answers

vote up 2 vote down

Arrows, which are more general than monads.

link|flag
vote up 1 vote down

The very simplest method is to simply pass around the environment between the functions. This is often used to teach scheme.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.