From f8583f9a85f54d0a7b4902d0d23b1b83f387b593 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 24 Jun 2024 00:06:23 +0900 Subject: Rename function from `<>` to `op` --- algebraic-structures.private.stream.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'algebraic-structures.private.stream.scm') 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) -- cgit v1.2.3