template <typename T, size_t Extent = cpp20::dynamic_extent>

class span

Defined at line 158 of file ../../src/media/third_party/chromium_media/chromium_utils.h

base/span.h

Public Methods

void span<T, Extent> ()

Defined at line 162 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <typename Container>
void span<T, Extent> (Container && c)

Defined at line 164 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <typename OtherT, size_t OtherExtent>
void span<T, Extent> (const cpp20::span<OtherT, OtherExtent> & other)

Defined at line 166 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <typename OtherSpan>
void copy_from (const OtherSpan & other)

Defined at line 169 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <typename OtherSpan>
void copy_prefix_from (const OtherSpan & other)

Defined at line 177 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <size_t Count>
span<T, Count> first ()

Defined at line 185 of file ../../src/media/third_party/chromium_media/chromium_utils.h

span<T, cpp20::dynamic_extent> first (size_t count)

Defined at line 188 of file ../../src/media/third_party/chromium_media/chromium_utils.h

span<T, cpp20::dynamic_extent> take_first (size_t count)

Defined at line 192 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <size_t Count>
span<T, Count> take_first ()

Defined at line 198 of file ../../src/media/third_party/chromium_media/chromium_utils.h

template <size_t Count>
span<T, Count> last ()

Defined at line 205 of file ../../src/media/third_party/chromium_media/chromium_utils.h

span<T, cpp20::dynamic_extent> last (size_t count)

Defined at line 208 of file ../../src/media/third_party/chromium_media/chromium_utils.h