Searched defs:cons_stdtuple (Results 1 – 1 of 1) sorted by relevance
66 struct cons_stdtuple struct68 typedef typename std::tuple_element<N,StdTuple>::type head_type;69 typedef cons_stdtuple_ctor<StdTuple,N+1> tail_ctor;70 typedef typename tail_ctor::result_type tail_type;72 cons_stdtuple(const StdTuple& t_):t(t_){} in cons_stdtuple() argument74 const head_type& get_head()const{return std::get<N>(t);} in get_head()75 tail_type get_tail()const{return tail_ctor::create(t);} in get_tail()77 const StdTuple& t;