tr1/utility
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #ifndef _TR1_UTILITY
00035 #define _TR1_UTILITY 1
00036
00037 #include "../utility"
00038
00039 namespace std
00040 {
00041 namespace tr1
00042 {
00043 template<class _Tp> class tuple_size;
00044 template<int _Int, class _Tp> class tuple_element;
00045
00046
00047 template<class _Tp1, class _Tp2>
00048 struct tuple_size<std::pair<_Tp1, _Tp2> >
00049 { static const int value = 2; };
00050
00051 template<class _Tp1, class _Tp2>
00052 struct tuple_element<0, std::pair<_Tp1, _Tp2> >
00053 { typedef _Tp1 type; };
00054
00055 template<class _Tp1, class _Tp2>
00056 struct tuple_element<1, std::pair<_Tp1, _Tp2> >
00057 { typedef _Tp2 type; };
00058
00059
00060 template<int _Int> struct __pair_get;
00061
00062 template<>
00063 struct __pair_get<0>
00064 {
00065 template<typename _Tp1, typename _Tp2>
00066 static _Tp1& __get(std::pair<_Tp1, _Tp2>& __pair)
00067 { return __pair.first; }
00068
00069 template<typename _Tp1, typename _Tp2>
00070 static const _Tp1& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
00071 { return __pair.first; }
00072 };
00073
00074 template<>
00075 struct __pair_get<1>
00076 {
00077 template<typename _Tp1, typename _Tp2>
00078 static _Tp2& __get(std::pair<_Tp1, _Tp2>& __pair)
00079 { return __pair.second; }
00080
00081 template<typename _Tp1, typename _Tp2>
00082 static const _Tp2& __const_get(const std::pair<_Tp1, _Tp2>& __pair)
00083 { return __pair.second; }
00084 };
00085
00086 template<int _Int, class _Tp1, class _Tp2>
00087 typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
00088 get(pair<_Tp1, _Tp2>& __in)
00089 { return __pair_get<_Int>::__get(__in); }
00090
00091 template<int _Int, class _Tp1, class _Tp2>
00092 const typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
00093 get(const pair<_Tp1, _Tp2>& __in)
00094 { return __pair_get<_Int>::__const_get(__in); }
00095 }
00096 }
00097
00098 #endif