File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -178,6 +178,36 @@ class json_arrayt:public jsont
178
178
array.emplace_back (std::forward<argumentst>(arguments)...);
179
179
}
180
180
181
+ std::vector<jsont>::iterator begin ()
182
+ {
183
+ return array.begin ();
184
+ }
185
+
186
+ std::vector<jsont>::const_iterator begin () const
187
+ {
188
+ return array.begin ();
189
+ }
190
+
191
+ std::vector<jsont>::const_iterator cbegin () const
192
+ {
193
+ return array.cbegin ();
194
+ }
195
+
196
+ std::vector<jsont>::iterator end ()
197
+ {
198
+ return array.end ();
199
+ }
200
+
201
+ std::vector<jsont>::const_iterator end () const
202
+ {
203
+ return array.end ();
204
+ }
205
+
206
+ std::vector<jsont>::const_iterator cend () const
207
+ {
208
+ return array.cend ();
209
+ }
210
+
181
211
typedef jsont value_type; // NOLINT(readability/identifiers)
182
212
};
183
213
You can’t perform that action at this time.
0 commit comments