summaryrefslogtreecommitdiff
path: root/doc/ref
diff options
context:
space:
mode:
authorDaniel Llorens <daniel.llorens@bluewin.ch>2016-06-23 12:15:31 +0200
committerDaniel Llorens <daniel.llorens@bluewin.ch>2016-07-11 09:11:50 +0200
commit3320eaa7887a5079936681123e34de1d6588e85d (patch)
treec3b4468b69cec599056fa4ad9d6d7b75a69fe632 /doc/ref
parentcbaa6cadcce4aa46be24f4ebf4bdaaf94d4f6abd (diff)
downloadguile-3320eaa7887a5079936681123e34de1d6588e85d.tar.gz
Remove uniform-array-read!, uniform-array-write from the manual
These procedures where removed in fc7bd367ab4b5027a7f80686b1e229c62e43c90b (2011-05-12). * doc/ref/api-compound.texi: Ditto.
Diffstat (limited to 'doc/ref')
-rw-r--r--doc/ref/api-compound.texi33
1 files changed, 0 insertions, 33 deletions
diff --git a/doc/ref/api-compound.texi b/doc/ref/api-compound.texi
index ef4869cc1..dde814c41 100644
--- a/doc/ref/api-compound.texi
+++ b/doc/ref/api-compound.texi
@@ -1569,39 +1569,6 @@ $\left(\matrix{%
@end example
@end deffn
-@deffn {Scheme Procedure} uniform-array-read! ra [port_or_fd [start [end]]]
-@deffnx {C Function} scm_uniform_array_read_x (ra, port_or_fd, start, end)
-Attempt to read all elements of array @var{ra}, in lexicographic order, as
-binary objects from @var{port_or_fd}.
-If an end of file is encountered,
-the objects up to that point are put into @var{ra}
-(starting at the beginning) and the remainder of the array is
-unchanged.
-
-The optional arguments @var{start} and @var{end} allow
-a specified region of a vector (or linearized array) to be read,
-leaving the remainder of the vector unchanged.
-
-@code{uniform-array-read!} returns the number of objects read.
-@var{port_or_fd} may be omitted, in which case it defaults to the value
-returned by @code{(current-input-port)}.
-@end deffn
-
-@deffn {Scheme Procedure} uniform-array-write ra [port_or_fd [start [end]]]
-@deffnx {C Function} scm_uniform_array_write (ra, port_or_fd, start, end)
-Writes all elements of @var{ra} as binary objects to
-@var{port_or_fd}.
-
-The optional arguments @var{start}
-and @var{end} allow
-a specified region of a vector (or linearized array) to be written.
-
-The number of objects actually written is returned.
-@var{port_or_fd} may be
-omitted, in which case it defaults to the value returned by
-@code{(current-output-port)}.
-@end deffn
-
@node Shared Arrays
@subsubsection Shared Arrays