mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-08-19 04:21:51 +02:00
Updated API Reference (markdown)
@@ -85,8 +85,23 @@ Gets the value at the specified index.
|
|||||||
|
|
||||||
##### Signature
|
##### Signature
|
||||||
```c++
|
```c++
|
||||||
JsonVariant get(size_t index) const
|
// Non template version
|
||||||
T get<T>(size_t index) const;
|
JsonVariant get (size_t index) const;
|
||||||
|
|
||||||
|
// Template version
|
||||||
|
bool get<bool> (size_t index) const;
|
||||||
|
const char* get<const char*> (size_t index) const;
|
||||||
|
double get<double> (size_t index) const;
|
||||||
|
float get<float> (size_t index) const;
|
||||||
|
signed char get<signed char> (size_t index) const;
|
||||||
|
signed int get<signed int> (size_t index) const;
|
||||||
|
signed long get<signed long> (size_t index) const;
|
||||||
|
signed short get<signed short> (size_t index) const;
|
||||||
|
String get<String> (size_t index) const;
|
||||||
|
unsigned char get<unsigned char> (size_t index) const;
|
||||||
|
unsigned int get<unsigned int> (size_t index) const;
|
||||||
|
unsigned long get<unsigned long> (size_t index) const;
|
||||||
|
unsigned short get<unsigned short> (size_t index) const;
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Arguments
|
##### Arguments
|
||||||
|
Reference in New Issue
Block a user