Searched defs:MutableArrayRef (Results 1 – 5 of 5) sorted by relevance
27 template<typename T> class [[nodiscard]] MutableArrayRef; variable322 MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() function325 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function328 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function332 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function343 /*implicit*/ constexpr MutableArrayRef(const C &V) : ArrayRef<T>(V) {} in MutableArrayRef() function347 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
32 template<typename T> class MutableArrayRef; variable
33 template <typename T> class MutableArrayRef; variable
36 template <typename T> class MutableArrayRef; variable
32 template <typename T> class MutableArrayRef; variable