aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.private.vector.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-24 00:06:23 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-24 00:06:23 +0900
commitf8583f9a85f54d0a7b4902d0d23b1b83f387b593 (patch)
tree266eed4c18affaeac756dee300064e55f515d83b /algebraic-structures.private.vector.scm
parent6464288c0518db387657a16082fe541c253c463a (diff)
Rename function from `<>` to `op`
Diffstat (limited to 'algebraic-structures.private.vector.scm')
-rw-r--r--algebraic-structures.private.vector.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/algebraic-structures.private.vector.scm b/algebraic-structures.private.vector.scm
index c9deb22..7427001 100644
--- a/algebraic-structures.private.vector.scm
+++ b/algebraic-structures.private.vector.scm
@@ -1,10 +1,10 @@
-(module (algebraic-structures private vector) (<> unit fold reduce map1)
+(module (algebraic-structures private vector) (op unit fold reduce map1)
(import (except scheme
vector-fill! vector->list list->vector)
(only (chicken base) add1 assert)
(srfi 133))
- (define (<> xs ys) (vector-append xs ys))
+ (define (op xs ys) (vector-append xs ys))
(define unit #())