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

Method TBufferStream

util/stream/buffer.h:97–101  ·  view source on GitHub ↗

* Constructs a stream that works with an internal buffer. * * @param buflen Initial size of the internal buffer. */

Source from the content-addressed store, hash-verified

95 * @param buflen Initial size of the internal buffer.
96 */
97 inline TBufferStream(size_t buflen = 1024)
98 : TBufferOutput(buflen)
99 , TBufferInput(TBufferOutput::Buffer())
100 {
101 }
102
103 /**
104 * Constructs a stream that works with the provided buffer.

Callers

nothing calls this directly

Calls 1

BufferFunction · 0.50

Tested by

no test coverage detected