sandbox
Loading...
Searching...
No Matches
fwd.hpp
1#ifndef LIBSBX_MATH_FWD_HPP_
2#define LIBSBX_MATH_FWD_HPP_
3
4#include <libsbx/math/concepts.hpp>
5
6namespace sbx::math {
7
8namespace detail {
9
10template<std::size_t, std::size_t, typename>
12
13} // namespace detail
14
15template<std::size_t Columns, std::size_t Rows, scalar Type>
17
18template<std::size_t Columns, std::size_t Rows, scalar Type>
19using concrete_matrix_t = typename concrete_matrix<Columns, Rows, Type>::type;
20
21} // namespace sbx::math
22
23#endif // LIBSBX_MATH_FWD_HPP_
Definition: fwd.hpp:16