aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.private.stream.scm
diff options
context:
space:
mode:
Diffstat (limited to 'algebraic-structures.private.stream.scm')
-rw-r--r--algebraic-structures.private.stream.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/algebraic-structures.private.stream.scm b/algebraic-structures.private.stream.scm
index a268841..b966a94 100644
--- a/algebraic-structures.private.stream.scm
+++ b/algebraic-structures.private.stream.scm
@@ -1,10 +1,10 @@
-(module (algebraic-structures private stream) (<> unit fold reduce map1)
+(module (algebraic-structures private stream) (op unit fold reduce map1)
(import scheme
(srfi 41)
(streams utils)
(only (chicken base) assert))
- (define (<> xs ys) (stream-append xs ys))
+ (define (op xs ys) (stream-append xs ys))
(define unit stream-null)