blob: 7fb1513c9064a2bd5262d62ebe56e48093be6c74 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- typeindex ---------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_TYPEINDEX
12#define _LIBCPP_TYPEINDEX
13
14/*
15
16 typeindex synopsis
17
18namespace std
19{
20
21class type_index
22{
23public:
Howard Hinnant0687adc2011-05-28 18:57:24 +000024 type_index(const type_info& rhs) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000025
Howard Hinnant0687adc2011-05-28 18:57:24 +000026 bool operator==(const type_index& rhs) const noexcept;
27 bool operator!=(const type_index& rhs) const noexcept;
28 bool operator< (const type_index& rhs) const noexcept;
29 bool operator<=(const type_index& rhs) const noexcept;
30 bool operator> (const type_index& rhs) const noexcept;
31 bool operator>=(const type_index& rhs) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000032
Howard Hinnant0687adc2011-05-28 18:57:24 +000033 size_t hash_code() const noexcept;
34 const char* name() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000035};
36
37template <>
38struct hash<type_index>
39 : public unary_function<type_index, size_t>
40{
Howard Hinnant0687adc2011-05-28 18:57:24 +000041 size_t operator()(type_index index) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000042};
43
44} // std
45
46*/
47
48#include <__config>
49#include <typeinfo>
50#include <__functional_base>
51
52#pragma GCC system_header
53
54_LIBCPP_BEGIN_NAMESPACE_STD
55
Howard Hinnantee6ccd02010-09-23 18:58:28 +000056class _LIBCPP_VISIBLE type_index
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000057{
58 const type_info* __t_;
59public:
Howard Hinnantee6ccd02010-09-23 18:58:28 +000060 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000061 type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000062
Howard Hinnantee6ccd02010-09-23 18:58:28 +000063 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000064 bool operator==(const type_index& __y) const _NOEXCEPT
65 {return *__t_ == *__y.__t_;}
Howard Hinnantee6ccd02010-09-23 18:58:28 +000066 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000067 bool operator!=(const type_index& __y) const _NOEXCEPT
68 {return *__t_ != *__y.__t_;}
Howard Hinnantee6ccd02010-09-23 18:58:28 +000069 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000070 bool operator< (const type_index& __y) const _NOEXCEPT
71 {return __t_->before(*__y.__t_);}
Howard Hinnantee6ccd02010-09-23 18:58:28 +000072 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000073 bool operator<=(const type_index& __y) const _NOEXCEPT
74 {return !__y.__t_->before(*__t_);}
Howard Hinnantee6ccd02010-09-23 18:58:28 +000075 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000076 bool operator> (const type_index& __y) const _NOEXCEPT
77 {return __y.__t_->before(*__t_);}
Howard Hinnantee6ccd02010-09-23 18:58:28 +000078 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000079 bool operator>=(const type_index& __y) const _NOEXCEPT
80 {return !__t_->before(*__y.__t_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000081
Howard Hinnantee6ccd02010-09-23 18:58:28 +000082 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000083 size_t hash_code() const _NOEXCEPT {return __t_->hash_code();}
Howard Hinnantee6ccd02010-09-23 18:58:28 +000084 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000085 const char* name() const _NOEXCEPT {return __t_->name();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086};
87
Howard Hinnantee6ccd02010-09-23 18:58:28 +000088template <class _Tp> struct _LIBCPP_VISIBLE hash;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000089
90template <>
Howard Hinnantee6ccd02010-09-23 18:58:28 +000091struct _LIBCPP_VISIBLE hash<type_index>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000092 : public unary_function<type_index, size_t>
93{
Howard Hinnantee6ccd02010-09-23 18:58:28 +000094 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant0687adc2011-05-28 18:57:24 +000095 size_t operator()(type_index __index) const _NOEXCEPT
96 {return __index.hash_code();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000097};
98
99_LIBCPP_END_NAMESPACE_STD
100
101#endif // _LIBCPP_TYPEINDEX