mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Explicit definitions for vector-for-each' and
vector-map'; Guile's SRFI-1
`for-each' and `map' implementations do not operate on lists and vectors interchangeably. * module/rnrs/base.scm (vector-for-each, vector-map): New functions. * test-suite/Makefile.am: Add test-suite/tests/r6rs-base.test to SCM_TESTS. * test-suite/tests/r6rs-base.test: New file.
This commit is contained in:
parent
58daadd982
commit
b24b7deb00
3 changed files with 39 additions and 2 deletions
|
@ -72,10 +72,13 @@
|
|||
|
||||
syntax-rules identifier-syntax)
|
||||
(import (rename (guile) (quotient div) (modulo mod))
|
||||
(rename (only (guile) for-each map)
|
||||
(for-each vector-for-each) (map vector-map))
|
||||
(srfi srfi-11))
|
||||
|
||||
(define (vector-for-each proc . vecs)
|
||||
(apply for-each (cons proc (map vector->list vecs))))
|
||||
(define (vector-map proc . vecs)
|
||||
(list->vector (apply map (cons proc (map vector->list vecs)))))
|
||||
|
||||
(define (div-and-mod x y) (let ((q (div x y)) (r (mod x y))) (values q r)))
|
||||
|
||||
(define (div0 x y)
|
||||
|
|
|
@ -80,6 +80,7 @@ SCM_TESTS = tests/00-initial-env.test \
|
|||
tests/r6rs-arithmetic-bitwise.test \
|
||||
tests/r6rs-arithmetic-fixnums.test \
|
||||
tests/r6rs-arithmetic-flonums.test \
|
||||
tests/r6rs-base.test \
|
||||
tests/r6rs-conditions.test \
|
||||
tests/r6rs-control.test \
|
||||
tests/r6rs-enums.test \
|
||||
|
|
33
test-suite/tests/r6rs-base.test
Normal file
33
test-suite/tests/r6rs-base.test
Normal file
|
@ -0,0 +1,33 @@
|
|||
;;; r6rs-base.test --- Test suite for R6RS (rnrs base)
|
||||
|
||||
;; Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
;;
|
||||
;; This library is free software; you can redistribute it and/or
|
||||
;; modify it under the terms of the GNU Lesser General Public
|
||||
;; License as published by the Free Software Foundation; either
|
||||
;; version 3 of the License, or (at your option) any later version.
|
||||
;;
|
||||
;; This library is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
;; Lesser General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU Lesser General Public
|
||||
;; License along with this library; if not, write to the Free Software
|
||||
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
|
||||
(define-module (test-suite test-r6rs-base)
|
||||
:use-module ((rnrs base) :version (6))
|
||||
:use-module (test-suite lib))
|
||||
|
||||
(with-test-prefix "vector-for-each"
|
||||
(pass-if "vector-for-each simple"
|
||||
(let ((sum 0))
|
||||
(vector-for-each (lambda (x) (set! sum (+ sum x))) '#(1 2 3))
|
||||
(eqv? sum 6))))
|
||||
|
||||
(with-test-prefix "vector-map"
|
||||
(pass-if "vector-map simple"
|
||||
(equal? '#(3 2 1) (vector-map (lambda (x) (- 4 x)) '#(1 2 3)))))
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue