Lines Matching refs:reference
24 // value_type is std::pair<const std::string, Value>. It's reference type is a
31 using reference = std::pair<const std::string&, Value&>;
36 explicit pointer(const reference& ref);
40 reference* operator->() { return &ref_; }
43 reference ref_;
51 reference operator*();
68 // value_type is std::pair<const std::string, Value>. It's reference type is a
75 using reference = std::pair<const std::string&, const Value&>;
80 explicit pointer(const reference& ref);
84 const reference* operator->() const { return &ref_; }
87 const reference ref_;
95 reference operator*() const;