37. implement SmallerThan<A, B>
分享给更多人
-通过 / -执行
请实现SmallerThan<A, B>
。
type A = SmallerThan<0, 1> // truetype B = SmallerThan<1, 0> // falsetype C = SmallerThan<10, 9> // false
-通过 / -执行
请实现SmallerThan<A, B>
。
type A = SmallerThan<0, 1> // truetype B = SmallerThan<1, 0> // falsetype C = SmallerThan<10, 9> // false