-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyutility.hpp
49 lines (39 loc) · 1 KB
/
myutility.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef MYUTILITY_HPP
#define MYUTILITY_HPP
#include <tuple>
#include <iostream>
//std::cout for std::tuple
template<uint32_t IDX,uint32_t MAX,typename... Args>
struct PRINT_TUPLE{
static void print(std::ostream& strm,const std::tuple<Args...>& t){
strm << std::get<IDX>(t) << (IDX+1==MAX ? "":",");
PRINT_TUPLE<IDX+1,MAX,Args...>::print(strm,t);
}
};
template<uint32_t MAX,typename...Args>
struct PRINT_TUPLE<MAX,MAX,Args...>{
static void print(std::ostream& strm,const std::tuple<Args...>& t){
}
};
template<typename...Args>
std::ostream& operator << (std::ostream& strm,const std::tuple<Args...>& t)
{
strm << "[";
PRINT_TUPLE<0,sizeof...(Args),Args...>::print(strm,t);
return strm << "]";
}
namespace ytd{
template<class T1,class T2,class Func>
Func double_for(T1& a,T2& b,Func f){
if(a.size()!=b.size()){
std::cerr << "size difference error"<<std::endl;
exit(0);
}
auto x=a.begin();auto y=b.begin();
for(;x!=a.end();++x,++y){
f(*x,*y);
}
return f;
}
}
#endif