Skip to content

Tags: purescript/purescript-tailrec

Tags

v6.1.0

Toggle v6.1.0's commit message
Added `tailRec2`, `tailRec3`, `loop2`, `loop3` convenience functions

v6.0.0

Toggle v6.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare v6.0.0 release (1st PS 0.15.0-compatible release) (#39)

* Update the bower dependencies

* Update Node to 14 in CI

* Update the changelog

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.

v5.0.0

Toggle v5.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Prepare v5.0.0 release (#36)

* Update CI to build with the latest version of the compiler

* Update the bower repository URL to match the URL in the registry

* Upgrade bower dependencies

* Update the changelog

v4.1.0

Toggle v4.1.0's commit message
add whileJust and untilJust (#27)

* add whileJust and untilJust

* purescript-assert to dev

* un maybe

* new lines

v4.0.0

Toggle v4.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #24 from purescript/compiler/0.12

Updates for 0.12

v3.3.0

Toggle v3.3.0's commit message
add monadRecMaybe (#21)

fix #20

v3.2.0

Toggle v3.2.0's commit message
implement MonadRec for Function (#18)

v3.1.0

Toggle v3.1.0's commit message
remove a space leak in tailRecEff (#19)

tailRecEff was holding a reference to the result of f' a.

Normally, this wouldn't matter, but in this case we are about
to enter a loop that may last a long time, so it is better to let
the GC clean up the result of f' a before.