aboutsummaryrefslogtreecommitdiff
path: root/algebraic-structures.group.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.group.scm
parent6464288c0518db387657a16082fe541c253c463a (diff)
Rename function from `<>` to `op`
Diffstat (limited to 'algebraic-structures.group.scm')
-rw-r--r--algebraic-structures.group.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/algebraic-structures.group.scm b/algebraic-structures.group.scm
index 5cac19f..ab2ba7e 100644
--- a/algebraic-structures.group.scm
+++ b/algebraic-structures.group.scm
@@ -1,6 +1,6 @@
-(functor ((algebraic-structures group) (M (<> unit inv)))
- (<> unit inv pow)
- (import (only M <> unit inv)
+(functor ((algebraic-structures group) (M (op unit inv)))
+ (op unit inv pow)
+ (import (only M op unit inv)
scheme
(chicken base))
@@ -13,4 +13,4 @@
(if (= i 0)
acc
(loop (sub1 i)
- (<> acc x)))))))
+ (op acc x)))))))