MCPcopy Create free account
hub / github.com/NativeScript/android / start

Function start

test-app/runtime/src/main/cpp/v8_inspector/src/base/vector.h:181–184  ·  view source on GitHub ↗

Returns the pointer to the start of the data in the vector.

Source from the content-addressed store, hash-verified

179
180 // Returns the pointer to the start of the data in the vector.
181 T* start() const {
182 DCHECK_IMPLIES(length_ > 0, data_ != nullptr);
183 return data_.get();
184 }
185
186 constexpr T* begin() const { return start(); }
187 constexpr T* end() const { return start() + size(); }

Callers 4

beginFunction · 0.85
endFunction · 0.85
as_vectorFunction · 0.85
beginMethod · 0.85

Calls 1

getMethod · 0.65

Tested by

no test coverage detected