MCPcopy Create free account
hub / github.com/KhronosGroup/SPIRV-Tools / end

Method end

source/util/small_vector.h:244–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242 const_iterator cbegin() const { return begin(); }
243
244 iterator end() {
245 if (large_data_) {
246 return large_data_->data() + large_data_->size();
247 } else {
248 return small_data_ + size_;
249 }
250 }
251
252 const_iterator end() const {
253 if (large_data_) {

Callers 2

SmallVectorMethod · 0.45
operator==Method · 0.45

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected