Lines Matching refs:subspan
79 constexpr span<element_type, see below> subspan() const;
83 …constexpr span<element_type, dynamic_extent> subspan(index_type offset, index_type count = dynamic…
293 constexpr auto subspan() const noexcept
296 _LIBCPP_ASSERT(_Offset >= 0 && _Offset <= size(), "Offset out of range in span::subspan()");
303 subspan(index_type __offset, index_type __count = dynamic_extent) const noexcept
305 …_LIBCPP_ASSERT( __offset >= 0 && __offset <= size(), "Offset out of range in span::subspan(offset,…
306 …nt <= size()) || __count == dynamic_extent, "Count out of range in span::subspan(offset, count)");
309 …_LIBCPP_ASSERT(__offset + __count <= size(), "count + offset out of range in span::subspan(offset,…
459 constexpr span<_Tp, dynamic_extent> subspan() const noexcept
461 _LIBCPP_ASSERT(_Offset >= 0 && _Offset <= size(), "Offset out of range in span::subspan()");
462 …T(_Count == dynamic_extent || _Offset + _Count <= size(), "Count out of range in span::subspan()");
468 subspan(index_type __offset, index_type __count = dynamic_extent) const noexcept
470 …_LIBCPP_ASSERT( __offset >= 0 && __offset <= size(), "Offset out of range in span::subspan(offset,…
471 …nt <= size()) || __count == dynamic_extent, "count out of range in span::subspan(offset, count)");
474 …_LIBCPP_ASSERT(__offset + __count <= size(), "Offset + count out of range in span::subspan(offset,…