blob: 15b798c1e533da39eaae2936c28284e95515f8dc (
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
48
49
50
51
52
|
#include "yacppdic/object_type.hpp"
#include "yacppdic/detail/internal/hash.hpp"
#include <functional>
namespace yacppdic
{
ObjectType::ObjectType(const std::type_info &type_info) noexcept : _type_info(type_info)
{
}
ObjectType::ObjectType(
const std::type_info &type_info,
const std::string_view tag
) noexcept
: _type_info(type_info), _tag(tag)
{
}
auto ObjectType::operator==(const ObjectType &object_type) const noexcept -> bool
{
return hash() == object_type.hash();
}
auto ObjectType::hash() const noexcept -> std::size_t
{
const auto type_hash = _type_info.hash_code();
return _tag == "" ? type_hash
: combine_hashes(type_hash, std::hash<std::string_view>()(_tag));
}
auto ObjectType::name() const noexcept -> std::string_view
{
return { _type_info.name() };
}
auto ObjectType::tag() const noexcept -> std::string_view
{
return _tag;
}
auto ObjectTypeHasher::operator()(const ObjectType &object_type) const noexcept
-> std::size_t
{
return object_type.hash();
}
} // namespace yacppdic
|