MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / ~basic_json

Function ~basic_json

native/thirdpart/json/json.hpp:16502–16506  ·  view source on GitHub ↗

! @brief destructor Destroys the JSON value and frees all allocated memory. @complexity Linear. @requirement This function helps `basic_json` satisfying the [Container](https://en.cppreference.com/w/cpp/named_req/Container) requirements: - The complexity is linear. - All stored elements are destroyed and all memory is freed. @since version 1.0.0 */

Source from the content-addressed store, hash-verified

16500 @since version 1.0.0
16501 */
16502 ~basic_json() noexcept
16503 {
16504 assert_invariant();
16505 m_value.destroy(m_type);
16506 }
16507
16508 /// @}
16509

Callers

nothing calls this directly

Calls 2

assert_invariantFunction · 0.85
destroyMethod · 0.80

Tested by

no test coverage detected