aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.private.list.monad.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-16 01:58:48 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-16 01:58:48 +0900
commit5931a79a5a915035e01b9fb22a3edfde7895e424 (patch)
tree7704b515651e83db421ee342f02894bfa75557cb /algebraic-structures.private.list.monad.scm
parent3f2efd08c5e93b2d20d3f4a32bdfec40a8b14730 (diff)
Add list implementations
Diffstat (limited to 'algebraic-structures.private.list.monad.scm')
-rw-r--r--algebraic-structures.private.list.monad.scm8
1 files changed, 8 insertions, 0 deletions
diff --git a/algebraic-structures.private.list.monad.scm b/algebraic-structures.private.list.monad.scm
new file mode 100644
index 0000000..96da332
--- /dev/null
+++ b/algebraic-structures.private.list.monad.scm
@@ -0,0 +1,8 @@
+(module (algebraic-structures private list monad) (>>=)
+ (import (except scheme map apply)
+ (chicken module)
+ (only (srfi 1) append-map))
+ (reexport (algebraic-structures list applicative))
+
+ (define (>>= xs f)
+ (append-map f xs)))