Lines Matching defs:start
74 // Returns a pointer to the start of the data in the vector.
180 // Returns the pointer to the start of the data in the vector.
181 T* start() const {
186 constexpr T* begin() const { return start(); }
187 constexpr T* end() const { return start() + size(); }
196 Vector<T> as_vector() const { return Vector<T>(start(), size()); }
232 std::copy(begin, end, vec.start());
285 // Construct a Vector from a start pointer and a size.
287 inline constexpr Vector<T> VectorOf(T* start, size_t size) {
288 return {start, size};