MCPcopy Create free account
hub / github.com/catboost/catboost / OutTo

Method OutTo

library/cpp/http/io/headers.cpp:32–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void THttpInputHeader::OutTo(IOutputStream* stream) const {
33 typedef IOutputStream::TPart TPart;
34
35 const TPart parts[] = {
36 TPart(Name_),
37 TPart(": ", 2),
38 TPart(Value_),
39 TPart::CrLf(),
40 };
41
42 stream->Write(parts, sizeof(parts) / sizeof(*parts));
43}
44
45THttpHeaders::THttpHeaders(IInputStream* stream) {
46 TString header;

Callers 2

Out<THttpHeaders>Function · 0.45
WriteCachedImplMethod · 0.45

Calls 3

TPartClass · 0.85
BeginClass · 0.85
WriteMethod · 0.45

Tested by

no test coverage detected