/* * Copyright (c) 2021, Matthew Olsson * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace PDF { DeprecatedString Value::to_deprecated_string(int indent) const { return visit( [&](Empty const&) -> DeprecatedString { // Return type deduction means that we can't use implicit conversions. return ""; }, [&](std::nullptr_t const&) -> DeprecatedString { return "null"; }, [&](bool const& b) -> DeprecatedString { return b ? "true" : "false"; }, [&](int const& i) { return DeprecatedString::number(i); }, [&](float const& f) { return DeprecatedString::number(f); }, [&](Reference const& ref) { return DeprecatedString::formatted("{} {} R", ref.as_ref_index(), ref.as_ref_generation_index()); }, [&](NonnullRefPtr const& object) { return object->to_deprecated_string(indent); }); } }