blob: bd61e098ba493b2d6c93d554fbac503cb3fe623a (
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
53
|
#include "yacppdic/object_type.hpp"
#include "yacppdic/detail/internal/hash.hpp"
#include <functional>
namespace yacppdic
{
BaseObjectType::BaseObjectType(const std::type_info &type_info) noexcept
: _type_info(type_info)
{
}
BaseObjectType::BaseObjectType(
const std::type_info &type_info,
const std::string_view tag
) noexcept
: _type_info(type_info), _tag(tag)
{
}
auto BaseObjectType::operator==(const BaseObjectType &object_type) const noexcept -> bool
{
return hash() == object_type.hash();
}
auto BaseObjectType::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 BaseObjectType::name() const noexcept -> std::string_view
{
return { _type_info.name() };
}
auto BaseObjectType::tag() const noexcept -> std::string_view
{
return _tag;
}
auto ObjectTypeHasher::operator()(const BaseObjectType &object_type) const noexcept
-> std::size_t
{
return object_type.hash();
}
} // namespace yacppdic
|