Implements parts of: `P2637R3` https://wg21.link/P2637R3 (https://eel.is/c++draft/variant.visit) Implements: `basic_format_arg.visit()` `basic_format_arg.visit<R>()` Deprecates: `std::visit_format_arg()` The tests are as close as possible to the non-member function tests. To land after: https://github.com/llvm/llvm-project/pull/76447, https://github.com/llvm/llvm-project/pull/76268 --------- Co-authored-by: Zingam <zingam@outlook.com>
29 lines
974 B
C++
29 lines
974 B
C++
//===----------------------------------------------------------------------===//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include <concepts>
|
|
#include <format>
|
|
#include <utility>
|
|
|
|
#include "test_macros.h"
|
|
|
|
/// Returns whether the basic_format_arg contains a type T with the expected value.
|
|
template <class Context, class T>
|
|
bool test_basic_format_arg(std::basic_format_arg<Context> arg, T expected) {
|
|
auto visitor = [expected](auto a) {
|
|
if constexpr (std::same_as<decltype(a), T>)
|
|
return a == expected;
|
|
else
|
|
return false;
|
|
};
|
|
#if TEST_STD_VER >= 26 && defined(TEST_HAS_EXPLICIT_THIS_PARAMETER)
|
|
return arg.visit(std::move(visitor));
|
|
#else
|
|
return std::visit_format_arg(std::move(visitor), arg);
|
|
#endif
|
|
}
|