Yoba Perl
Main Page
Classes
Files
File List
hash_entry.cpp
1
#include "yobaperl/hash_entry.hpp"
2
#include "yobaperl/hash.hpp"
3
4
namespace
yoba
{
5
6
7
8
HashEntry::HashEntry
(
const
Hash & hash, HE * he)
9
: _hash(hash),
10
_he(he)
11
{
12
}
13
14
HashEntry::HashEntry
(
const
HashEntry
& to_copy)
15
: _hash(to_copy._hash),
16
_he(to_copy._he)
17
{
18
}
19
20
HashEntry::HashEntry
(
HashEntry
&& to_move)
21
: _hash(to_move._hash),
22
_he(to_move._he)
23
{
24
}
25
26
27
28
std::string
HashEntry::getKey
()
const
29
{
30
return
std::string(HeKEY(
getHE
()), HeKLEN(
getHE
()));
31
}
32
33
Scalar
HashEntry::getValue
()
const
34
{
35
return
Scalar
(_hash.
getPerl
(), HeVAL(
getHE
()),
true
);
36
}
37
38
std::string
HashEntry::toString
()
const
39
{
40
return
getKey
() +
" => "
+
getValue
().
toString
();
41
}
42
43
std::pair<std::string, Scalar>
HashEntry::toPair
()
const
44
{
45
return
std::make_pair(
getKey
(),
getValue
());
46
}
47
48
49
50
HE *
HashEntry::getHE
()
const
51
{
52
YOBAPERL_ASSERT(_he);
53
return
_he;
54
}
55
56
U32
HashEntry::getHashCode
()
const
57
{
58
return
HeHASH(
getHE
());
59
}
60
61
62
63
bool
HashEntry::operator== (
const
HashEntry
& other)
const
64
{
65
return
getHE
() == other.
getHE
();
66
}
67
68
bool
HashEntry::operator!= (
const
HashEntry
& other)
const
69
{
70
return
!(*
this
== other);
71
}
72
73
std::ostream & operator<< (std::ostream & stream,
const
HashEntry
& entry)
74
{
75
return
stream << entry.
toString
();
76
}
77
78
79
80
}
// namespace yoba
yoba::HashEntry::getHashCode
U32 getHashCode() const
Internal hash code.
Definition:
hash_entry.cpp:56
yoba::HashEntry
Key-value pair.
Definition:
hash_entry.hpp:17
yoba::HashEntry::HashEntry
HashEntry(const HashEntry &to_copy)
Copy constructor.
Definition:
hash_entry.cpp:14
yoba
Definition:
array.cpp:5
yoba::Scalar::toString
std::string toString() const
Convert scalar value to C++ string.
Definition:
scalar.cpp:74
yoba::Variable::getPerl
Perl & getPerl() const
Get Perl instance.
Definition:
variable.cpp:46
yoba::HashEntry::toPair
std::pair< std::string, Scalar > toPair() const
Convert to C++ pair.
Definition:
hash_entry.cpp:43
yoba::HashEntry::getKey
std::string getKey() const
Get key string.
Definition:
hash_entry.cpp:28
yoba::HashEntry::getHE
HE * getHE() const
Raw hash entry.
Definition:
hash_entry.cpp:50
yoba::HashEntry::getValue
Scalar getValue() const
Get value.
Definition:
hash_entry.cpp:33
yoba::HashEntry::toString
std::string toString() const
Convert to C++ string.
Definition:
hash_entry.cpp:38
yoba::Scalar
Scalar reference
Definition:
scalar.hpp:24
src
hash_entry.cpp
Generated by
1.8.11