guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/02: wip


From: Daniel Llorens
Subject: [Guile-commits] 01/02: wip
Date: Fri, 7 Feb 2020 09:26:44 -0500 (EST)

lloda pushed a commit to branch wip-vector-cleanup
in repository guile.

commit 62110103e55665a5519a5749dd110a8daf77dab6
Author: Daniel Llorens <address@hidden>
AuthorDate: Fri Feb 7 10:53:59 2020 +0100

    wip
---
 doc/ref/api-data.texi | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi
index 5c49272..54586a1 100644
--- a/doc/ref/api-data.texi
+++ b/doc/ref/api-data.texi
@@ -6459,8 +6459,6 @@ Return a pointer to the elements of @var{vec}.  This 
pointer can only be
 used to read the elements of @var{vec}.  When @var{vec} is not a vector,
 an error is signaled.
 
-For use with general arrays, see @code{scm_array_handle_elements}.
-
 The following example shows the typical way to use this function.  It
 creates a list of all elements of @var{vec} (in reverse order).
 
@@ -6473,14 +6471,13 @@ for (size_t i = 0; i < len; ++i)
   list = scm_cons (elt[i], list);
 @end example
 
+For use with general arrays, see @code{scm_array_handle_elements}.
 @end deftypefn
 
 @deftypefn {C Function} {SCM *} scm_vector_writable_elements (SCM vec, size_t 
*lenp)
 Like @code{scm_vector_elements} but the pointer can be used to modify
 the vector.
 
-For use with general arrays, see @code{scm_array_handle_writable_elements}.
-
 The following example shows the typical way to use this function.  It
 fills a vector with @code{#t} (but see @code{vector-fill!}).
 
@@ -6492,6 +6489,7 @@ for (size_t i = 0; i < len; ++i)
   elt[i] = SCM_BOOL_T;
 @end example
 
+For use with general arrays, see @code{scm_array_handle_writable_elements}.
 @end deftypefn
 
 @node Uniform Numeric Vectors



reply via email to

[Prev in Thread] Current Thread [Next in Thread]