mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-12 06:41:13 +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:
parent
8dddb4bc9f
commit
c59ef9c154
2 changed files with 13 additions and 4 deletions
|
@ -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>
|
2001-04-26 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
* data-rep.texi (Defining New Types (Smobs)): Use non-deprecated
|
* data-rep.texi (Defining New Types (Smobs)): Use non-deprecated
|
||||||
|
|
|
@ -541,7 +541,7 @@ Like @code{string-concatenate}, but the result may share memory
|
||||||
with the strings in the list @var{ls}.
|
with the strings in the list @var{ls}.
|
||||||
@end deffn
|
@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
|
Without optional arguments, this procedure is equivalent to
|
||||||
|
|
||||||
@smalllisp
|
@smalllisp
|
||||||
|
@ -550,13 +550,15 @@ Without optional arguments, this procedure is equivalent to
|
||||||
|
|
||||||
If the optional argument @var{final_string} is specified, it is
|
If the optional argument @var{final_string} is specified, it is
|
||||||
consed onto the beginning to @var{ls} before performing the
|
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.
|
Guaranteed to return a freshly allocated string.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
@deffn primitive reverse-string-concatenate/shared ls final_string end
|
@deffn primitive string-concatenate-reverse/shared ls final_string end
|
||||||
Like @code{reverse-string-concatenate}, but the result may
|
Like @code{string-concatenate-reverse}, but the result may
|
||||||
share memory with the the strings in the @var{ls} arguments.
|
share memory with the the strings in the @var{ls} arguments.
|
||||||
@end deffn
|
@end deffn
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue