mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
Add consuming_buffers::get
This commit is contained in:
@ -4,6 +4,7 @@ Version 84:
|
|||||||
* static_buffer::consume improvement
|
* static_buffer::consume improvement
|
||||||
* multi_buffer is type-check friendly
|
* multi_buffer is type-check friendly
|
||||||
* bind_handler allows placeholders
|
* bind_handler allows placeholders
|
||||||
|
* Add consuming_buffers::get
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -112,9 +112,16 @@ public:
|
|||||||
/// Assignment
|
/// Assignment
|
||||||
consuming_buffers& operator=(consuming_buffers&&);
|
consuming_buffers& operator=(consuming_buffers&&);
|
||||||
|
|
||||||
/// Assignmen
|
/// Assignment
|
||||||
consuming_buffers& operator=(consuming_buffers const&);
|
consuming_buffers& operator=(consuming_buffers const&);
|
||||||
|
|
||||||
|
/// Returns the underlying buffers, without modification
|
||||||
|
BufferSequence const&
|
||||||
|
get() const
|
||||||
|
{
|
||||||
|
return bs_;
|
||||||
|
}
|
||||||
|
|
||||||
/// Get a bidirectional iterator to the first element.
|
/// Get a bidirectional iterator to the first element.
|
||||||
const_iterator
|
const_iterator
|
||||||
begin() const;
|
begin() const;
|
||||||
|
Reference in New Issue
Block a user