1 #ifndef YOBAPERL_HASH_HPP 2 #define YOBAPERL_HASH_HPP 4 #include "yobaperl/common.hpp" 5 #include "yobaperl/variable.hpp" 6 #include "yobaperl/hash_iterator.hpp" 37 Hash(
Perl & perl, HV * hv,
bool increase_refcount);
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);
61 Scalar get(
const std::string & key);
71 Scalar remove(
const std::string & key);
101 bool isEmpty()
const;
109 bool isExists(
const std::string & key)
const;
115 std::string toString()
const;
121 std::unordered_map<std::string, Scalar> toMap()
const;
139 Hash makeCopy()
const;
170 Scalar operator[] (
const std::string & key) noexcept;
171 Scalar operator[] (
const char * key) noexcept;
177 operator bool()
const;
184 void _store(
const std::string & key, SV * value);
187 I32 _interInit()
const;
188 HE * _interNext()
const;
195 #endif // YOBAPERL_HASH_HPP
Base class for perl variables.