2.1 KiB
2.1 KiB
[ispanstream.members]
31 Input/output library [input.output]
31.9 Span-based streams [span.streams]
31.9.4 Class template basic_ispanstream [ispanstream]
31.9.4.4 Member functions [ispanstream.members]
basic_spanbuf<charT, traits>* rdbuf() const noexcept;
Effects: Equivalent to:return const_cast<basic_spanbuf<charT, traits>*>(addressof(sb));
std::span<const charT> span() const noexcept;
Effects: Equivalent to: return rdbuf()->span();
void span(std::span<charT> s) noexcept;
Effects: Equivalent to rdbuf()->span(s).
template<class ROS> void span(ROS&& s) noexcept;
Constraints: ROS models ranges::borrowed_range.
(<ROS, std::span>) && convertible_to<ROS, std::span> is true.
Effects: Let sp be std::span(std::forward(s)).
Equivalent to:this->span(std::span(const_cast<charT*>(sp.data()), sp.size()));