AsyncBerkeley
Asynchronous Berkeley sockets. Simple.
Loading...
Searching...
No Matches
io::ScatterGatherLike Concept Reference

A concept that describes a scatter/gather like buffer object. More...

#include <io/detail/concepts.hpp>

Concept definition

template<typename B>
concept io::ScatterGatherLike = requires(B buf) {
std::ranges::data(buf);
std::ranges::size(buf);
}
A concept that describes a scatter/gather like buffer object.
Definition concepts.hpp:59

Detailed Description

A concept that describes a scatter/gather like buffer object.