From 1a78a62555be32868418fe52f8e330c9d0f95d5a Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 30 Oct 2012 12:57:26 -0700 Subject: Imported Upstream version 1.49.0 --- .../reference/buffer_copy/overload8.html | 94 ++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100755 doc/html/boost_asio/reference/buffer_copy/overload8.html (limited to 'doc/html/boost_asio/reference/buffer_copy/overload8.html') diff --git a/doc/html/boost_asio/reference/buffer_copy/overload8.html b/doc/html/boost_asio/reference/buffer_copy/overload8.html new file mode 100755 index 0000000000..bd7298494d --- /dev/null +++ b/doc/html/boost_asio/reference/buffer_copy/overload8.html @@ -0,0 +1,94 @@ + + + +buffer_copy (8 of 30 overloads) + + + + + + + + + + + + + + + +
Boost C++ LibrariesHomeLibrariesPeopleFAQMore
+
+
+PrevUpHomeNext +
+
+ +

+ Copies bytes from a source buffer to a target buffer. +

+
std::size_t buffer_copy(
+    const mutable_buffers_1 & target,
+    const mutable_buffer & source);
+
+
+ + Parameters +
+
+

+
+
target
+

+ A modifiable buffer representing the memory region to which the bytes + will be copied. +

+
source
+

+ A modifiable buffer representing the memory region from which the + bytes will be copied. The contents of the source buffer will not + be modified. +

+
+
+
+ + Return + Value +
+

+ The number of bytes copied. +

+
+ + Remarks +
+

+ The number of bytes copied is the lesser of: +

+
    +
  • + buffer_size(target) +
  • +
  • + buffer_size(source) +
  • +
+
+ + + +
+
+
+PrevUpHomeNext +
+ + -- cgit v1.2.3