Lines Matching refs:subspan
78 constexpr span<element_type, see below> subspan() const;
82 …constexpr span<element_type, dynamic_extent> subspan(size_type offset, size_type count = dynamic_e…
296 constexpr auto subspan() const noexcept
299 static_assert(_Offset <= _Extent, "Offset out of range in span::subspan()");
300 …= dynamic_extent || _Count <= _Extent - _Offset, "Offset + count out of range in span::subspan()");
309 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept
311 _LIBCPP_ASSERT(__offset <= size(), "Offset out of range in span::subspan(offset, count)");
312 …unt <= size() || __count == dynamic_extent, "Count out of range in span::subspan(offset, count)");
315 …_LIBCPP_ASSERT(__count <= size() - __offset, "Offset + count out of range in span::subspan(offset,…
458 constexpr span<element_type, _Count> subspan() const noexcept
460 _LIBCPP_ASSERT(_Offset <= size(), "Offset out of range in span::subspan()");
461 …== dynamic_extent || _Count <= size() - _Offset, "Offset + count out of range in span::subspan()");
467 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept
469 _LIBCPP_ASSERT(__offset <= size(), "Offset out of range in span::subspan(offset, count)");
470 …unt <= size() || __count == dynamic_extent, "count out of range in span::subspan(offset, count)");
473 …_LIBCPP_ASSERT(__count <= size() - __offset, "Offset + count out of range in span::subspan(offset,…