FastLED 3.9.15
Loading...
Searching...
No Matches

◆ keys()

fl::vector< fl::string > fl::JsonValue::keys ( ) const
inline

Definition at line 1463 of file json.h.

1465 {
1467 if (is_object()) {
1468 for (auto it = begin(); it != end(); ++it) {
1469 auto keyValue = *it;
1470 result.push_back(keyValue.first);
1471 }
1472 }
void push_back(const T &value)
Definition vector.h:552
HeapVector< T, Allocator > vector
Definition vector.h:1214
bool is_object() const noexcept
Definition json.h:879
iterator end()
Definition json.h:1152
iterator begin()
Definition json.h:1143

References begin(), end(), and is_object().

Referenced by getObjectKeys().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: