We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2823818 commit 679916cCopy full SHA for 679916c
modules/generalized-arrays/generalized-arrays.scm
@@ -653,8 +653,8 @@ OTHER DEALINGS IN THE SOFTWARE.
653
(let ((r (%%interval-intersect (list a b))))
654
(cond
655
((not r))
656
- ((%%interval= a r) a)
657
- ((%%interval= b r) b)
+ ((equal? a r) a) ;; equivalent to %%interval=
+ ((equal? b r) b)
658
(else r))))
659
(else
660
(error "interval-intersect: Not all arguments have the same dimension: " a b)))))
0 commit comments