QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
VEC Struct Reference

Public Member Functions

template<typename... X>
 VEC (X &&...x)
 
template<typename U , typename... X>
 VEC (std::initializer_list< U > il, X &&...x)
 

Public Attributes

std::vector< int > v
 

Constructor & Destructor Documentation

◆ VEC() [1/2]

template<typename... X>
VEC::VEC ( X &&...  x)
inline
1500: v(std::forward<X>(x)...) {}
std::vector< int > v
Definition test_optional.cpp:1498

◆ VEC() [2/2]

template<typename U , typename... X>
VEC::VEC ( std::initializer_list< U >  il,
X &&...  x 
)
inline
1503: v(il, std::forward<X>(x)...) {}

Member Data Documentation

◆ v

std::vector<int> VEC::v

The documentation for this struct was generated from the following file: