Searched defs:static_vec (Results 1 – 1 of 1) sorted by relevance
46 static_vec() : data_(nullptr), size_(0) {} in static_vec() function47 static_vec(T* begin, T* end) : data_(begin), size_(end - begin) {} in static_vec() function48 template <size_t s> static_vec(T (&arr)[s]) : data_(&arr[0]), size_(s) {} in static_vec() function