forked from bblanchon/ArduinoJson
Added JsonObjectBase::remove()
This commit is contained in:
@ -81,4 +81,12 @@ JsonValue& JsonObjectBase::operator[](JsonKey key)
|
||||
bool JsonObjectBase::containsKey(JsonKey key) const
|
||||
{
|
||||
return getMatchingPair(key) != 0;
|
||||
}
|
||||
|
||||
void JsonObjectBase::remove(JsonKey key)
|
||||
{
|
||||
KeyValuePair* match = getMatchingPair(key);
|
||||
if (match == 0) return;
|
||||
|
||||
*match = items[--count];
|
||||
}
|
Reference in New Issue
Block a user