Create a new non-modifiable buffer from an existing buffer. * @returns const_buffer(b) . */
| 939 | * @returns <tt>const_buffer(b)</tt>. |
| 940 | */ |
| 941 | ASIO_NODISCARD inline ASIO_CONST_BUFFER buffer( |
| 942 | const const_buffer& b) ASIO_NOEXCEPT |
| 943 | { |
| 944 | return ASIO_CONST_BUFFER(b); |
| 945 | } |
| 946 | |
| 947 | /// Create a new non-modifiable buffer from an existing buffer. |
| 948 | /** |
nothing calls this directly
no test coverage detected