[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/06: monads: Micro-optimize 'foldm'.
From: |
Ludovic Courtès |
Subject: |
04/06: monads: Micro-optimize 'foldm'. |
Date: |
Wed, 02 Sep 2015 21:39:51 +0000 |
civodul pushed a commit to branch wip-build-systems-gexp
in repository guix.
commit 5fd352c5199ed2f6b038158f7d7b66851f41f476
Author: Ludovic Courtès <address@hidden>
Date: Sat Apr 4 17:58:41 2015 +0200
monads: Micro-optimize 'foldm'.
* guix/monads.scm (foldm): Hoist 'monad-bind' and 'monad-return' calls
outside of the loop. Use explicit >>= instead of 'mlet*', and
explicit return instead of 'with-monad' + 'return'.
---
guix/monads.scm | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/guix/monads.scm b/guix/monads.scm
index 61cd533..8eb775f 100644
--- a/guix/monads.scm
+++ b/guix/monads.scm
@@ -266,7 +266,9 @@ MONAD---i.e., return a monadic function in MONAD."
(foldm %state-monad (lift2 cons %state-monad) '() '(a b c))
=> '(c b a) ;monadic
"
- (with-monad monad
+ ;; Hoist access to MONAD's 'bind' and 'return' fields outside of the loop.
+ (let ((>>= (monad-bind monad))
+ (return (monad-return monad)))
(let loop ((lst lst)
(result init))
(match lst
- branch wip-build-systems-gexp created (now 5364e0e), Ludovic Courtès, 2015/09/02
- 01/06: gnu: bootstrap: Move 'use-modules' forms to the beginning of build expressions., Ludovic Courtès, 2015/09/02
- 03/06: gexp: Micro-optimize sexp serialization., Ludovic Courtès, 2015/09/02
- 04/06: monads: Micro-optimize 'foldm'.,
Ludovic Courtès <=
- 05/06: tests: Add 'test-assertm' to (guix tests)., Ludovic Courtès, 2015/09/02
- 06/06: packages: Turn 'bag->derivation' into a monadic procedure., Ludovic Courtès, 2015/09/02
- 02/06: build-system: Rewrite using gexps., Ludovic Courtès, 2015/09/02