mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Add consuming_buffers::get
This commit is contained in:
@ -4,6 +4,7 @@ Version 84:
|
||||
* static_buffer::consume improvement
|
||||
* multi_buffer is type-check friendly
|
||||
* bind_handler allows placeholders
|
||||
* Add consuming_buffers::get
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -112,9 +112,16 @@ public:
|
||||
/// Assignment
|
||||
consuming_buffers& operator=(consuming_buffers&&);
|
||||
|
||||
/// Assignmen
|
||||
/// Assignment
|
||||
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.
|
||||
const_iterator
|
||||
begin() const;
|
||||
|
Reference in New Issue
Block a user