2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===-------------------------- typeindex ---------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_TYPEINDEX
|
|
|
|
#define _LIBCPP_TYPEINDEX
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
typeindex synopsis
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
class type_index
|
|
|
|
{
|
|
|
|
public:
|
2011-05-29 02:57:24 +08:00
|
|
|
type_index(const type_info& rhs) noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator==(const type_index& rhs) const noexcept;
|
|
|
|
bool operator!=(const type_index& rhs) const noexcept;
|
|
|
|
bool operator< (const type_index& rhs) const noexcept;
|
|
|
|
bool operator<=(const type_index& rhs) const noexcept;
|
|
|
|
bool operator> (const type_index& rhs) const noexcept;
|
|
|
|
bool operator>=(const type_index& rhs) const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t hash_code() const noexcept;
|
|
|
|
const char* name() const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct hash<type_index>
|
|
|
|
: public unary_function<type_index, size_t>
|
|
|
|
{
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t operator()(type_index index) const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <__config>
|
2021-07-01 21:25:35 +08:00
|
|
|
#include <__functional/unary_function.h>
|
2010-05-12 03:42:16 +08:00
|
|
|
#include <__functional_base>
|
2021-03-25 06:19:12 +08:00
|
|
|
#include <compare>
|
2021-05-19 23:57:04 +08:00
|
|
|
#include <typeinfo>
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2010-05-12 03:42:16 +08:00
|
|
|
#pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2017-01-05 07:56:00 +08:00
|
|
|
class _LIBCPP_TEMPLATE_VIS type_index
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
const type_info* __t_;
|
|
|
|
public:
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
type_index(const type_info& __y) _NOEXCEPT : __t_(&__y) {}
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator==(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return *__t_ == *__y.__t_;}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator!=(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return *__t_ != *__y.__t_;}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator< (const type_index& __y) const _NOEXCEPT
|
|
|
|
{return __t_->before(*__y.__t_);}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator<=(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return !__y.__t_->before(*__t_);}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator> (const type_index& __y) const _NOEXCEPT
|
|
|
|
{return __y.__t_->before(*__t_);}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
bool operator>=(const type_index& __y) const _NOEXCEPT
|
|
|
|
{return !__t_->before(*__y.__t_);}
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t hash_code() const _NOEXCEPT {return __t_->hash_code();}
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
const char* name() const _NOEXCEPT {return __t_->name();}
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
2017-01-05 07:56:00 +08:00
|
|
|
template <class _Tp> struct _LIBCPP_TEMPLATE_VIS hash;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
template <>
|
2017-01-05 07:56:00 +08:00
|
|
|
struct _LIBCPP_TEMPLATE_VIS hash<type_index>
|
2010-05-12 03:42:16 +08:00
|
|
|
: public unary_function<type_index, size_t>
|
|
|
|
{
|
2010-09-24 02:58:28 +08:00
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
2011-05-29 02:57:24 +08:00
|
|
|
size_t operator()(type_index __index) const _NOEXCEPT
|
|
|
|
{return __index.hash_code();}
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
2021-04-21 00:03:32 +08:00
|
|
|
#endif // _LIBCPP_TYPEINDEX
|