The latest version of loops is 0.2.0.2-1.

loops

Version 0.2.0.1 revision 0 uploaded by ThomasTuegel.

Package meta

Synopsis
Fast imperative-style loops
Description

loops is a library for fast, imperative-style loops with a clean syntax.

Features

  • Fast, imperative-style loops with a clean syntax. Bind (>>=) nests loops, so in do-notation, each subsequent line is nested inside loops that appear above it.

  • Iteration over common data structures, like lists and vectors.

  • Robust performance because there is no reliance on fusion.

  • NEW! Loop-unrolling to arbitrary depth. Unrollable loop combinators are provided in Control.Monad.Loop.Unroll. (The simple, "rolled" interface is still provided in Control.Monad.Loop.) The unrolling depth set at the call site at compile time. My benchmarks show that folding over unrolled loops is up to 25% faster than folding over unboxed vectors!

For best performance, please compile your code with -O2. You should also use GHC's LLVM backend if possible; it generally produces faster executables.

Author
Thomas Tuegel
Bug reports
https://github.com/ttuegel/loops/issues
Category
Control
Copyright
(c) Thomas Tuegel 2014
Homepage
n/a
Maintainer
ttuegel@gmail.com
Package URL
n/a
Stability
n/a

Components