1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 12:20:26 +02:00

(string-for-each-index): New exported proc.

This commit is contained in:
Thien-Thi Nguyen 2001-08-24 22:00:45 +00:00
parent 0f21643339
commit 4cf7528804

View file

@ -1,17 +1,17 @@
;;;; srfi-13.scm --- SRFI-13 procedures for Guile ;;;; srfi-13.scm --- SRFI-13 procedures for Guile
;;;; ;;;;
;;;; Copyright (C) 2001 Free Software Foundation, Inc. ;;;; Copyright (C) 2001 Free Software Foundation, Inc.
;;;; ;;;;
;;;; This program is free software; you can redistribute it and/or ;;;; This program is free software; you can redistribute it and/or
;;;; modify it under the terms of the GNU General Public License as ;;;; modify it under the terms of the GNU General Public License as
;;;; published by the Free Software Foundation; either version 2, or ;;;; published by the Free Software Foundation; either version 2, or
;;;; (at your option) any later version. ;;;; (at your option) any later version.
;;;; ;;;;
;;;; This program is distributed in the hope that it will be useful, ;;;; This program is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;;; General Public License for more details. ;;;; General Public License for more details.
;;;; ;;;;
;;;; You should have received a copy of the GNU General Public License ;;;; You should have received a copy of the GNU General Public License
;;;; along with this software; see the file COPYING. If not, write to ;;;; along with this software; see the file COPYING. If not, write to
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330, ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
@ -56,7 +56,7 @@
(define string-downcase #f) (define string-downcase #f)
(define string-downcase! #f)) (define string-downcase! #f))
(export (export
;;; Predicates ;;; Predicates
;; string? string-null? <= in the core ;; string? string-null? <= in the core
string-any string-every string-any string-every
@ -134,6 +134,7 @@
string-unfold string-unfold
string-unfold-right string-unfold-right
string-for-each string-for-each
string-for-each-index
;;; Replicate/Rotate ;;; Replicate/Rotate
xsubstring string-xcopy! xsubstring string-xcopy!