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

Method DoWrite

library/cpp/streams/lzma/lzma.cpp:489–495  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

487}
488
489void TLzmaCompress::DoWrite(const void* buf, size_t len) {
490 if (!Impl_) {
491 ythrow yexception() << "can not write to finished lzma stream";
492 }
493
494 Impl_->Write(buf, len);
495}
496
497void TLzmaCompress::DoFinish() {
498 THolder<TImpl> impl(Impl_.Release());

Callers

nothing calls this directly

Calls 1

WriteMethod · 0.45

Tested by

no test coverage detected