You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide a mechanism to output arrays 1 element at a time without creating an iterator. Maybe something like
auto hnd = daw::json::array_start( output_Iterator );
hnd.to_json( value0 );
hnd.to_json( value1 );
hnd.to_json( value2 );
hnd.close( ); // or let go out of scope```
This can work with heterogenous types too.
The text was updated successfully, but these errors were encountered:
Provide a mechanism to output arrays 1 element at a time without creating an iterator. Maybe something like
The text was updated successfully, but these errors were encountered: