blob: 1144df751b5b5a4cbad7ee5ddc3e32349c6318d3 (
plain)
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
|
#include "yacppdic/detail/internal/object_identifier.hpp"
#include "yacppdic/detail/internal/hash.hpp"
#include <functional>
namespace yacppdic::internal
{
ObjectIdentifier::ObjectIdentifier(const std::type_info &type_info) noexcept
: _type_info(type_info)
{
}
ObjectIdentifier::ObjectIdentifier(
const std::type_info &type_info,
const std::string_view tag
) noexcept
: _type_info(type_info), _tag(tag)
{
}
auto ObjectIdentifier::operator==(const ObjectIdentifier &rhs) const noexcept -> bool
{
return hash() == rhs.hash();
}
auto ObjectIdentifier::hash() const noexcept -> std::size_t
{
const auto type_hash = _type_info.hash_code();
return _tag.empty() ? type_hash
: combine_hashes(type_hash, std::hash<std::string_view>()(_tag));
}
auto ObjectIdentifier::name() const noexcept -> std::string_view
{
return { _type_info.name() };
}
auto ObjectIdentifier::tag() const noexcept -> std::string_view
{
return _tag;
}
} // namespace yacppdic::internal
|