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

Method SubBlob

util/memory/blob.cpp:152–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150};
151
152TBlob TBlob::SubBlob(size_t len) const {
153 /*
154 * may be slightly optimized
155 */
156
157 return SubBlob(0, len);
158}
159
160TBlob TBlob::SubBlob(size_t begin, size_t end) const {
161 if (begin > Length() || end > Length() || begin > end) {

Callers 3

GetBlockFunction · 0.80
BlobByKeyMethod · 0.80
Y_UNIT_TESTFunction · 0.80

Calls 3

LengthClass · 0.85
BeginClass · 0.85
TBlobClass · 0.70

Tested by

no test coverage detected