Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Functions
SkZip.h File Reference
#include "include/private/base/SkAssert.h"
#include "include/private/base/SkDebug.h"
#include "include/private/base/SkSpan_impl.h"
#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <iterator>
#include <tuple>
#include <utility>

Go to the source code of this file.

Classes

class  SkZip< Ts >
 
class  SkMakeZipDetail
 

Functions

template<typename... Ts>
 SkZip (size_t size, Ts *... ts) -> SkZip< Ts... >
 
template<typename... Ts>
constexpr auto SkMakeZip (Ts &&... ts)
 

Function Documentation

◆ SkMakeZip()

template<typename... Ts>
constexpr auto SkMakeZip ( Ts &&...  ts)
inlineconstexpr

Definition at line 212 of file SkZip.h.

212 {
213 return SkMakeZipDetail::MakeZip(std::forward<Ts>(ts)...);
214}
static constexpr auto MakeZip(Ts &&... ts)
Definition SkZip.h:186

◆ SkZip()

template<typename... Ts>
SkZip ( size_t  size,
Ts *...  ts 
) -> SkZip< Ts... >