8#include <fmt/ostream.h>
15#if FMT_VERSION >= 90000
16template <
typename MatrixType>
17struct fmt::formatter<MatrixType,
19 : fmt::ostream_formatter {};
21template <
typename MatrixType>
22struct fmt::is_range<MatrixType,
26template <
typename MatrixType>
27struct fmt::formatter<
Eigen::WithFormat<MatrixType>>
28 :
public fmt::ostream_formatter {};
32template <
typename MatrixType>
33struct fmt::formatter<MatrixType,
35 : fmt::formatter<std::ostream, char> {};
37template <
typename MatrixType>
38struct fmt::is_range<MatrixType,
42template <
typename MatrixType>
43struct fmt::formatter<
Eigen::WithFormat<MatrixType>>
44 :
public fmt::formatter<std::ostream, char> {};
std::enable_if_t< is_eigen_dense_v< T >, T2 > enable_if_eigen_dense_t