diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2024-06-24 00:06:23 +0900 | 
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2024-06-24 00:06:23 +0900 | 
| commit | f8583f9a85f54d0a7b4902d0d23b1b83f387b593 (patch) | |
| tree | 266eed4c18affaeac756dee300064e55f515d83b /algebraic-structures.private.stream.scm | |
| parent | 6464288c0518db387657a16082fe541c253c463a (diff) | |
Rename function from `<>` to `op`
Diffstat (limited to 'algebraic-structures.private.stream.scm')
| -rw-r--r-- | algebraic-structures.private.stream.scm | 4 | 
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) | 
