1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

* srfi-13-14.texi (Reverse/Append): Updated procedure names for

string-concatenate-reverse[/shared].
	(Reverse/Append): Document the parameter `end' to
	string-concatenate-reverse.
This commit is contained in:
Martin Grabmüller 2001-04-26 19:59:33 +00:00
parent 8dddb4bc9f
commit c59ef9c154
2 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2001-04-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* srfi-13-14.texi (Reverse/Append): Updated procedure names for
string-concatenate-reverse[/shared].
(Reverse/Append): Document the parameter `end' to
string-concatenate-reverse.
2001-04-26 Neil Jerram <neil@ossau.uklinux.net>
* data-rep.texi (Defining New Types (Smobs)): Use non-deprecated

View file

@ -541,7 +541,7 @@ Like @code{string-concatenate}, but the result may share memory
with the strings in the list @var{ls}.
@end deffn
@deffn primitive reverse-string-concatenate ls final_string end
@deffn primitive string-concatenate-reverse ls final_string end
Without optional arguments, this procedure is equivalent to
@smalllisp
@ -550,13 +550,15 @@ Without optional arguments, this procedure is equivalent to
If the optional argument @var{final_string} is specified, it is
consed onto the beginning to @var{ls} before performing the
list-reverse and string-concatenate operations.
list-reverse and string-concatenate operations. If @var{end}
is given, only the characters of @var{final_string} up to index
@var{end} are used.
Guaranteed to return a freshly allocated string.
@end deffn
@deffn primitive reverse-string-concatenate/shared ls final_string end
Like @code{reverse-string-concatenate}, but the result may
@deffn primitive string-concatenate-reverse/shared ls final_string end
Like @code{string-concatenate-reverse}, but the result may
share memory with the the strings in the @var{ls} arguments.
@end deffn