#include <frc/kinematics/WheelPositions.h>
template<typename T>
std::copy_constructible<T> &&
requires(T a, T
b,
double t) {
{ a -
b } -> std::convertible_to<T>;
{ a.Interpolate(
b, t) } -> std::convertible_to<T>;
}
Definition: WheelPositions.h:11