tr1_impl/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
00035
00036 namespace std
00037 {
00038 _GLIBCXX_BEGIN_NAMESPACE_TR1
00039
00040 template<class _Tp> class tuple_size;
00041 template<int _Int, class _Tp> class tuple_element;
00042
00043
00044 template<class _Tp1, class _Tp2>
00045 struct tuple_size<std::pair<_Tp1, _Tp2> >
00046 { static const int value = 2; };
00047
00048 template<class _Tp1, class _Tp2>
00049 const int tuple_size<std::pair<_Tp1, _Tp2> >::value;
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 inline typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
00088 get(std::pair<_Tp1, _Tp2>& __in)
00089 { return __pair_get<_Int>::__get(__in); }
00090
00091 template<int _Int, class _Tp1, class _Tp2>
00092 inline const typename tuple_element<_Int, std::pair<_Tp1, _Tp2> >::type&
00093 get(const std::pair<_Tp1, _Tp2>& __in)
00094 { return __pair_get<_Int>::__const_get(__in); }
00095
00096 _GLIBCXX_END_NAMESPACE_TR1
00097 }
00098