Lines Matching defs:bounded_array_ref
65 struct bounded_array_ref { struct
70 explicit constexpr bounded_array_ref() noexcept : data_(nullptr), size_(0) in bounded_array_ref() argument
80 explicit constexpr bounded_array_ref(bounded_ptr<T, TrappingPolicy> data, size_t n) in bounded_array_ref() function
97 …explicit constexpr bounded_array_ref(T* data, size_t n) : data_(data), size_(static_cast<uint32_t>… in bounded_array_ref() argument
110 …explicit constexpr bounded_array_ref(T* first, T* last) : data_(first), size_(static_cast<uint32_t… in bounded_array_ref() function
125 …constexpr bounded_array_ref(bounded_array<T, N, TrappingPolicy>& data) : data_(data.data()), size_… in bounded_array_ref() argument
137 constexpr bounded_array_ref(T (&array)[N]) : data_(array), size_(static_cast<uint32_t>(N)) in bounded_array_ref() argument
149 constexpr bounded_array_ref& operator=(bounded_array_ref const&) = default; argument
150 constexpr bounded_array_ref& operator=(bounded_array_ref&& other) = default; argument
168 // objects inside a `bounded_array_ref`. argument
193 // `bounded_array_ref`. argument
212 // `bounded_array_ref`. argument
222 // Access the n-th element of a `bounded_array_ref`. argument
256 … TrappingPolicy::trap("bounded_array_ref: n + m is larger than the size of any bounded_array_ref"); in slice() argument
270 // `bounded_array_ref` references a sequence or not. argument