Searched defs:Array (Results 1 – 1 of 1) sorted by relevance
15 constexpr Array() : ptr_(nullptr), count_(0U) {} in Array() function16 constexpr Array(decltype(nullptr)) : Array() {} in Array() function18 Array(T* array, size_t count) : ptr_(array), count_(count) {} in Array() function20 Array(Array&& other) : ptr_(nullptr), count_(other.count_) { in Array() function
Completed in 5 milliseconds