1 2 3 4 5 6 7 8
#include "strbuf.h" #include <ostream> std::ostream& operator<<(std::ostream& os, TStringBuf buf) { os.write(buf.data(), buf.size()); return os; }