AK: Support taking JSON values out of a JSON array

This commit is contained in:
Timothy Flynn 2022-11-13 00:49:54 -05:00 committed by Linus Groh
parent 2c3ff6bb74
commit 09c59ee7c0
Notes: sideshowbarker 2024-07-17 04:31:56 +09:00

View File

@ -55,6 +55,8 @@ public:
[[nodiscard]] JsonValue const& at(size_t index) const { return m_values.at(index); }
[[nodiscard]] JsonValue const& operator[](size_t index) const { return at(index); }
[[nodiscard]] JsonValue take(size_t index) { return m_values.take(index); }
void clear() { m_values.clear(); }
void append(JsonValue value) { m_values.append(move(value)); }
void set(size_t index, JsonValue value) { m_values[index] = move(value); }