mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-01 11:07:56 +00:00
Added comments
This commit is contained in:
@@ -82,6 +82,12 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a buffer from two iterators in the range [first,last)
|
||||
*
|
||||
* \param first An iterator to the start of data
|
||||
* \param last An iterator to the end of data (not included)
|
||||
*/
|
||||
template <typename Iter>
|
||||
Buffer(const Iter first, Iter last)
|
||||
: Buffer(&*first, std::distance(first, last)) {
|
||||
|
||||
Reference in New Issue
Block a user