MCPcopy Create free account
hub / github.com/cinder/Cinder / buffer_sequence_end

Function buffer_sequence_end

include/asio/buffer.hpp:465–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

463/// Get an iterator to one past the end element in a buffer sequence.
464template <typename MutableBuffer>
465inline const mutable_buffer* buffer_sequence_end(const MutableBuffer& b,
466 typename enable_if<
467 is_convertible<const MutableBuffer*, const mutable_buffer*>::value
468 >::type* = 0) ASIO_NOEXCEPT
469{
470 return static_cast<const mutable_buffer*>(detail::addressof(b)) + 1;
471}
472
473/// Get an iterator to one past the end element in a buffer sequence.
474template <typename ConstBuffer>

Callers 13

buffers_iteratorClass · 0.85
buffer_sizeFunction · 0.85
buffer_copyFunction · 0.85
prepareMethod · 0.85
consumeMethod · 0.85
all_emptyMethod · 0.85
validateMethod · 0.85
firstMethod · 0.85
lineariseMethod · 0.85

Calls 1

endMethod · 0.45

Tested by

no test coverage detected