Yoba Perl
hash.hpp
1 #ifndef YOBAPERL_HASH_HPP
2 #define YOBAPERL_HASH_HPP
3 
4 #include "yobaperl/common.hpp"
5 #include "yobaperl/variable.hpp"
6 #include "yobaperl/hash_iterator.hpp"
7 
8 namespace yoba {
9 
10 
11 
22 class YOBAPERL_EXPORT Hash : public Variable
23 {
24  friend class HashIterator;
25 
26 public:
28 
29 
30 
37  Hash(Perl & perl, HV * hv, bool increase_refcount);
38 
39 
40 
42 
49  Hash & insert(const std::string & key, const Scalar & value);
50  Hash & insert(const std::pair<std::string, Scalar> & pair);
51  Hash & insert(const std::unordered_map<std::string, Scalar> & hashmap);
52 
61  Scalar get(const std::string & key);
62 
71  Scalar remove(const std::string & key);
72 
79  Hash & clear();
80 
82 
83 
84 
86 
93  I32 getSize() const;
94 
101  bool isEmpty() const;
102 
109  bool isExists(const std::string & key) const;
110 
115  std::string toString() const;
116 
121  std::unordered_map<std::string, Scalar> toMap() const;
122 
129  Scalar makeRef() const;
130 
139  Hash makeCopy() const;
140 
145  Iterator begin() const;
146  Iterator end() const;
147 
149 
150 
151 
153 
158  HV * getHV() const;
159 
161 
162 
163 
165 
170  Scalar operator[] (const std::string & key) noexcept;
171  Scalar operator[] (const char * key) noexcept;
172 
177  operator bool() const;
178 
180 
181 
182 
183 protected:
184  void _store(const std::string & key, SV * value);
185 
186 private:
187  I32 _interInit() const;
188  HE * _interNext() const;
189 };
190 
191 
192 
193 } // namespace yoba
194 
195 #endif // YOBAPERL_HASH_HPP
Definition: array.cpp:5
Hash reference
Definition: hash.hpp:22
Hash iterator.
Base class for perl variables.
Definition: variable.hpp:20
Main class.
Definition: perl.hpp:32
Scalar reference
Definition: scalar.hpp:24