mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-02 04:40:29 +02:00
This partially reverts commit e9508fbb7d
(May 3 2005).
* module/srfi/srfi-1.scm (take!, drop-right!, reduce, reduce-right,
take-while, take-while!, drop-while, span, span!, lset-adjoin): New
procedures.
* srfi/srfi-1.c (scm_srfi1_drop_right_x, scm_srfi1_drop_while,
scm_srfi1_lset_adjoin, scm_srfi1_reduce, scm_srfi1_reduce_right,
scm_srfi1_span, scm_srfi1_span_x, scm_srfi1_take_x,
scm_srfi1_take_while, scm_srfi1_take_while_x): Rewrite as
proxies to the corresponding Scheme procedures.
* benchmark-suite/benchmarks/srfi-1.bm ("drop-while"): New benchmark
prefix.
47 lines
1.4 KiB
Scheme
47 lines
1.4 KiB
Scheme
;;; -*- mode: scheme; coding: utf-8; -*-
|
||
;;; SRFI-1.
|
||
;;;
|
||
;;; Copyright 2010 Free Software Foundation, Inc.
|
||
;;;
|
||
;;; This program 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, or
|
||
;;; (at your option) any later version.
|
||
;;;
|
||
;;; This program 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 software; see the file COPYING.LESSER. If
|
||
;;; not, write to the Free Software Foundation, Inc., 51 Franklin
|
||
;;; Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
||
(define-module (benchmarks srfi-1)
|
||
#:use-module (srfi srfi-1)
|
||
#:use-module (benchmark-suite lib))
|
||
|
||
(define %big-list
|
||
(iota 1000000))
|
||
|
||
(define %small-list
|
||
(iota 10))
|
||
|
||
|
||
(with-benchmark-prefix "fold"
|
||
|
||
(benchmark "big" 30
|
||
(fold (lambda (x y) y) #f %big-list))
|
||
|
||
(benchmark "small" 2000000
|
||
(fold (lambda (x y) y) #f %small-list)))
|
||
|
||
|
||
(with-benchmark-prefix "drop-while"
|
||
|
||
(benchmark "big" 30
|
||
(drop-while (lambda (n) #t) %big-list))
|
||
|
||
(benchmark "small" 2000000
|
||
(drop-while (lambda (n) #t) %small-list)))
|