8#include <fmt/ostream.h>
10#include <fmt/format.h>
16#if FMT_VERSION >= 90000
17template <
typename MatrixType>
18struct fmt::formatter<MatrixType,
20 : fmt::ostream_formatter {};
22template <
typename MatrixType>
23struct fmt::is_range<MatrixType,
27template <
typename MatrixType>
28struct fmt::formatter<
Eigen::WithFormat<MatrixType>>
29 :
public fmt::ostream_formatter {};
33template <
typename MatrixType>
34struct fmt::formatter<MatrixType,
36 : fmt::formatter<std::ostream, char> {};
38template <
typename MatrixType>
39struct fmt::is_range<MatrixType,
43template <
typename MatrixType>
44struct fmt::formatter<
Eigen::WithFormat<MatrixType>>
45 :
public fmt::formatter<std::ostream, char> {};
std::enable_if_t< is_eigen_dense_v< T >, T2 > enable_if_eigen_dense_t