Create a new non-modifiable buffer from an existing buffer. * @returns const_buffer(b) . */
| 899 | * @returns <tt>const_buffer(b)</tt>. |
| 900 | */ |
| 901 | BOOST_ASIO_NODISCARD inline const_buffer buffer( |
| 902 | const const_buffer& b) noexcept |
| 903 | { |
| 904 | return const_buffer(b); |
| 905 | } |
| 906 | |
| 907 | /// Create a new non-modifiable buffer from an existing buffer. |
| 908 | /** |
nothing calls this directly
no test coverage detected