MCPcopy Create free account
hub / github.com/bblanchon/ArduinoJson / operator->

Function operator->

src/ArduinoJson/Array/JsonArrayIterator.hpp:9–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include <ArduinoJson/Variant/JsonVariant.hpp>
8
9ARDUINOJSON_BEGIN_PUBLIC_NAMESPACE
10
11template <typename T>
12class Ptr {
13 public:
14 Ptr(T value) : value_(value) {}
15
16 T* operator->() {
17 return &value_;
18 }
19
20 T& operator*() {
21 return value_;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected