Updated API Reference (markdown)

Benoît Blanchon
2015-11-06 22:23:35 +01:00
parent cc67243cc0
commit 661d21ca31

@@ -85,8 +85,23 @@ Gets the value at the specified index.
##### Signature
```c++
JsonVariant get(size_t index) const
T get<T>(size_t index) const;
// Non template version
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