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

Method DoWrite

util/stream/buffered.cpp:380–383  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

378}
379
380void TBufferedOutputBase::DoWrite(const void* data, size_t len) {
381 Y_ENSURE(Impl_.Get(), "cannot write to finished stream");
382 Impl_->Write(data, len);
383}
384
385void TBufferedOutputBase::DoWriteC(char c) {
386 Y_ENSURE(Impl_.Get(), "cannot write to finished stream");

Callers

nothing calls this directly

Calls 2

GetMethod · 0.45
WriteMethod · 0.45

Tested by

no test coverage detected