Searched defs:MutableArrayRef (Results 1 – 5 of 5) sorted by relevance
27 template<typename T> class [[nodiscard]] MutableArrayRef; variable325 /*implicit*/ MutableArrayRef(std::nullopt_t) : ArrayRef<T>() {} in MutableArrayRef() function328 /*implicit*/ MutableArrayRef(T &OneElt) : ArrayRef<T>(OneElt) {} in MutableArrayRef() function331 /*implicit*/ MutableArrayRef(T *data, size_t length) in MutableArrayRef() function335 MutableArrayRef(T *begin, T *end) : ArrayRef<T>(begin, end) {} in MutableArrayRef() function338 /*implicit*/ MutableArrayRef(SmallVectorImpl<T> &Vec) in MutableArrayRef() function342 /*implicit*/ MutableArrayRef(std::vector<T> &Vec) in MutableArrayRef() function347 /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr) in MutableArrayRef() function352 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() function
33 template <typename T> class MutableArrayRef; variable
32 template<typename T> class MutableArrayRef; variable
36 template <typename T> class MutableArrayRef; variable
31 template <typename T> class MutableArrayRef; variable