WPILibC++ 2023.4.3-108-ge5452e3
|
Trait which checks whether two units can be converted to each other. More...
#include <units/base.h>
Trait which checks whether two units can be converted to each other.
Inherits from std::true_type
or std::false_type
. Use is_convertible_unit<U1, U2>::value
to test whether class U1
is convertible to class U2
. Note: convertible has both the semantic meaning, (i.e. meters can be converted to feet), and the c++ meaning of conversion (type meters can be converted to type feet). Conversion is always symmetric, so if U1 is convertible to U2, then U2 will be convertible to U1.
U1 | Unit to convert from. |
U2 | Unit to convert to. |