MCPcopy Create free account
hub / github.com/boostorg/json / on_array_end

Method on_array_end

include/boost/json/detail/parse_into.hpp:1050–1058  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1048 }
1049
1050 bool on_array_end(system::error_code& ec)
1051 {
1052 BOOST_ASSERT( array_depth_ > 0 );
1053 --array_depth_;
1054
1055 if( (array_depth_ + object_depth_) == 0 )
1056 return parent_->signal_value(ec);
1057 return true;
1058 }
1059
1060 bool on_key_part(system::error_code&, string_view)
1061 {

Callers

nothing calls this directly

Calls 1

signal_valueMethod · 0.45

Tested by

no test coverage detected