Function deserialize_val
Synopsis
#include <src/c4/yml/node.hpp>
size_t deserialize_val(fmt::base64_wrapper v) const
Description
decode the base64-encoded key deserialize and assign the decoded blob to the given buffer/
- Returns
- the size of base64-decoded blob
Source
Lines 30-36 in src/c4/yml/node.cpp. Line 296 in src/c4/yml/node.hpp.
size_t NodeRef::deserialize_val(c4::fmt::base64_wrapper w) const
{
RYML_ASSERT( ! is_seed());
RYML_ASSERT(valid());
RYML_ASSERT(get() != nullptr);
return from_chars(val(), &w);
}