gsplines_cpp icon indicating copy to clipboard operation
gsplines_cpp copied to clipboard

Implemente simple GSpline linear operations with SFINAE

Open rafaelrojasmiliani opened this issue 2 years ago • 0 comments

template <typename T, typename std::enable_if_t<
                          std::is_base_of_v<GSplineBase, T>> * = nullptr>
T operator*(double _a, const T &_that);

template <typename T, typename std::enable_if_t<
                          std::is_base_of_v<GSplineBase, T>> * = nullptr>
T operator*(double _a, T &&_that);

rafaelrojasmiliani avatar May 19 '22 07:05 rafaelrojasmiliani