43 using native_iter = YAML::const_iterator;
44 using value_type = formats::
yaml::Value;
45 using reference =
const formats::
yaml::Value&;
46 using pointer =
const formats::
yaml::Value*;
54 using Builder = ValueBuilder;
63 Value& operator=(Value&&);
64 Value& operator=(
const Value&);
67 Value& operator=(T&&) && {
70 "You're assigning to a temporary formats::yaml::Value! Use "
71 "formats::yaml::ValueBuilder for data modifications."
82 Value(Value&& other, std::string path_prefix);
100 const_iterator
end()
const;
155 template <
typename T>
161 template <
typename T,
typename First,
typename... Rest>
162 auto As(First&& default_arg, Rest&&... more_default_args)
const;
167 template <
typename T>
247 class EmplaceEnabler {};
251 Value(EmplaceEnabler,
const YAML::Node& value,
const formats::
yaml::
Path& path, std::string_view key);
253 Value(EmplaceEnabler,
const YAML::Node& value,
const formats::
yaml::
Path& path, size_t index);
255 Value CloneWithReplacedPath(std::string&& new_path)
const;
259 Value(
const YAML::Node& root)
noexcept;
261 static Value MakeNonRoot(
const YAML::Node& value,
const formats::
yaml::
Path& path, std::string_view key);
262 static Value MakeNonRoot(
const YAML::Node& val,
const formats::
yaml::
Path& path, size_t index);
264 const YAML::Node& GetNative()
const;
265 YAML::Node& GetNative();
266 int GetExtendedType()
const;
269 bool IsConvertibleToArithmetic()
const;
272 T ValueAsArithmetic()
const;
274 static constexpr std::size_t kNativeNodeSize = 64;
275 static constexpr std::size_t kNativeAlignment =
alignof(
void*);
277 utils::FastPimpl<YAML::Node, kNativeNodeSize, kNativeAlignment> value_pimpl_;
281 friend class ValueBuilder;
283 friend bool Parse(
const Value& value,
parse::To<
bool>);
284 friend int64_t Parse(
const Value& value,
parse::To<int64_t>);
285 friend uint64_t Parse(
const Value& value,
parse::To<uint64_t>);
286 friend double Parse(
const Value& value,
parse::To<
double>);
287 friend std::string Parse(
const Value& value,
parse::To<std::string>);
292 friend formats::
yaml::Value impl::FromStringAllowRepeatedKeys(
const std::string& doc);