43 using native_iter = YAML::const_iterator;
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;
113 bool operator!=(
const Value& other)
const;
161 template <
typename T>
167 template <
typename T,
typename First,
typename... Rest>
168 auto As(First&& default_arg, Rest&&... more_default_args)
const;
173 template <
typename T>
253 class EmplaceEnabler {};
257 Value(EmplaceEnabler,
const YAML::Node& value,
const formats::
yaml::
Path& path, std::string_view key);
259 Value(EmplaceEnabler,
const YAML::Node& value,
const formats::
yaml::
Path& path, size_t index);
261 Value CloneWithReplacedPath(std::string&& new_path)
const;
265 Value(
const YAML::Node& root)
noexcept;
267 static Value MakeNonRoot(
const YAML::Node& value,
const formats::
yaml::
Path& path, std::string_view key);
268 static Value MakeNonRoot(
const YAML::Node& val,
const formats::
yaml::
Path& path, size_t index);
270 const YAML::Node& GetNative()
const;
271 YAML::Node& GetNative();
272 int GetExtendedType()
const;
275 bool IsConvertibleToArithmetic()
const;
278 T ValueAsArithmetic()
const;
280 static constexpr std::size_t kNativeNodeSize = 64;
281 static constexpr std::size_t kNativeAlignment =
alignof(
void*);
283 utils::FastPimpl<YAML::Node, kNativeNodeSize, kNativeAlignment> value_pimpl_;
287 friend class ValueBuilder;
289 friend bool Parse(
const Value& value,
parse::
To<
bool>);
290 friend int64_t Parse(
const Value& value,
parse::
To<int64_t>);
291 friend uint64_t Parse(
const Value& value,
parse::
To<uint64_t>);
292 friend double Parse(
const Value& value,
parse::
To<
double>);
293 friend std::string Parse(
const Value& value,
parse::
To<std::string>);
298 friend formats::
yaml::Value impl::FromStringAllowRepeatedKeys(
const std::string& doc);