命名空间
变体
操作

std::basic_ispanstream<CharT,Traits>::span

来自 cppreference.com
std::span<const CharT> span() const noexcept;
(1) (自 C++23)
void span( std::span<CharT> s ) noexcept;
(2) (自 C++23)
template< class SpanLike >
void span( SpanLike&& r ) noexcept;
(3) (自 C++23)
1) 获取一个引用已写入区域的 span,如果 std::ios_base::out 在封装的 std::basic_spanbuf 的打开模式中设置,否则获取一个引用底层缓冲区的 span
2) 使封装的 std::basic_spanbufs 所引用的缓冲区执行 I/O 操作。
3)(2) 相同,只是 s 是通过以下方式获取的:
std::span<const CharT> cs{std::forward<SpanLike>(r)};
std::span<CharT> s{const_cast<CharT*>(cs.data()), cs.size()};

. 此重载仅在 SpanLike 符合 borrowed_range 时参与重载解析,std::convertible_to<SpanLike, std::span<CharT>>false,并且 std::convertible_to<SpanLike, std::span<const CharT>>true

内容

[编辑] 参数

s - 引用将用作流的新的底层缓冲区的存储区的 std::span
r - 将用作流的新的底层缓冲区的 borrowed_range

[编辑] 返回值

1) 一个引用底层缓冲区或已写入区域的 std::span,具体取决于封装的 std::basic_spanbuf 的打开模式。
2,3) (无)

[编辑] 示例

#include <cassert>
#include <iostream>
#include <span>
#include <spanstream>
 
int main()
{
    char out_buf[16];
    std::ospanstream ost{std::span<char>{out_buf}};
    ost << "C++" << ' ' << 23 << '\0'; // note explicit null-termination
    auto sp = ost.span();
    assert(
        sp[0] == 'C' && sp[1] == '+' && sp[2] == '+' &&
        sp[3] == ' ' && sp[4] == '2' && sp[5] == '3' &&
        sp[6] == '\0'
    );
    std::cout << "sp.data(): [" << sp.data() << "]\n";
    std::cout << "out_buf: [" << out_buf << "]\n";
    // spanstream uses out_buf as internal storage, no allocations
    assert(static_cast<char*>(out_buf) == sp.data());
 
    const char in_buf[] = "X Y 42";
    std::ispanstream ist{std::span<const char>{in_buf}};
    assert(static_cast<const char*>(in_buf) == ist.span().data());
    char c;
    ist >> c;
    assert(c == 'X');
    ist >> c;
    assert(c == 'Y');
    int i;
    ist >> i;
    assert(i == 42);
    ist >> i; // buffer is exhausted
    assert(!ist);
}

输出

sp.data(): [C++ 23]
out_buf: [C++ 23]

[编辑] 参见

(C++23)
根据模式获取或初始化底层缓冲区
(std::basic_spanbuf<CharT,Traits> 的公共成员函数) [编辑]