Tiny cpp template algorithm library
Talg
initlist.h
Go to the documentation of this file.
1 
2 
3  template<class N,class T,class...Ts>
4  struct InitList: InitList<N,Ts...>{
5  using Base = InitList<N, Ts...>;
6  using Base::Base;
7 
8  };
9 
10 
11 
12 
13 
14 
15 
16 
InitList< N, Ts... > Base
Definition: initlist.h:5