diff --git a/API-Reference.md b/API-Reference.md index e1b1ad0..8b00872 100644 --- a/API-Reference.md +++ b/API-Reference.md @@ -85,8 +85,23 @@ Gets the value at the specified index. ##### Signature ```c++ -JsonVariant get(size_t index) const -T get(size_t index) const; +// Non template version +JsonVariant get (size_t index) const; + +// Template version +bool get (size_t index) const; +const char* get (size_t index) const; +double get (size_t index) const; +float get (size_t index) const; +signed char get (size_t index) const; +signed int get (size_t index) const; +signed long get (size_t index) const; +signed short get (size_t index) const; +String get (size_t index) const; +unsigned char get (size_t index) const; +unsigned int get (size_t index) const; +unsigned long get (size_t index) const; +unsigned short get (size_t index) const; ``` ##### Arguments