mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-02 03:28:01 +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>
|
template <typename Iter>
|
||||||
Buffer(const Iter first, Iter last)
|
Buffer(const Iter first, Iter last)
|
||||||
: Buffer(&*first, std::distance(first, last)) {
|
: Buffer(&*first, std::distance(first, last)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user