pairinteraction
A Rydberg Interaction Calculator
streamed.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2024 Pairinteraction Developers
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
4#pragma once
5
6#include <fmt/ostream.h>
7#include <utility>
8
9#if FMT_VERSION < 90000
10
11namespace fmt {
12template <typename T>
13inline auto streamed(T &&v) {
14 return std::forward<T>(v);
15}
16} // namespace fmt
17#endif
Definition: streamed.hpp:11
auto streamed(T &&v)
Definition: streamed.hpp:13