diff --git a/core/dictionary.cpp b/core/dictionary.cpp index e3f4aa5f280..ed6c8416449 100644 --- a/core/dictionary.cpp +++ b/core/dictionary.cpp @@ -114,6 +114,11 @@ void Dictionary::erase(const Variant &p_key) { _p->variant_map.erase(p_key); } +bool Dictionary::erase_checked(const Variant &p_key) { + + return _p->variant_map.erase(p_key); +} + bool Dictionary::operator==(const Dictionary &p_dictionary) const { return _p == p_dictionary._p; diff --git a/core/dictionary.h b/core/dictionary.h index f001f2d5e10..98311ed8944 100644 --- a/core/dictionary.h +++ b/core/dictionary.h @@ -64,6 +64,7 @@ public: bool has_all(const Array &p_keys) const; void erase(const Variant &p_key); + bool erase_checked(const Variant &p_key); bool operator==(const Dictionary &p_dictionary) const;