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

Method WriteComplex

library/cpp/binsaver/buffered_io.h:72–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70 }
71
72 void WriteComplex(const void* userBuffer, i64 size) {
73 Flush();
74 if (size >= N_SIZE) {
75 Stream.Write(userBuffer, size);
76 bFailed = Stream.IsFailed();
77 } else
78 Write(userBuffer, size);
79 }
80
81 void operator=(const TBufferedStream&) {
82 }

Callers

nothing calls this directly

Calls 4

FlushFunction · 0.50
WriteFunction · 0.50
WriteMethod · 0.45
IsFailedMethod · 0.45

Tested by

no test coverage detected