Closed dtolnay closed 2 days ago
mem::size_of::<$t>() >= 2 is only false in the i8 and u8 case. An optimizing compiler can easily see that n >= 10000 is also false in that case.
mem::size_of::<$t>() >= 2
n >= 10000
mem::size_of::<$t>() >= 2
is only false in the i8 and u8 case. An optimizing compiler can easily see thatn >= 10000
is also false in that case.