I would like to convert
(n < 0 ? 1 : 0)
into bit twiddling (assuming 2s complement arch).
for performance reasons.
With an unsigned shift,
x = n >>> 31; // Java's unsigned shift x = (int)((uint)n >> 31); // C#'s unsigned shift, the casts are effectively nop
GCC does this automatically, other compilers may also. Or not. Your mileage may vary.
Copyright © 2021 Jogjafile Inc.
With an unsigned shift,
GCC does this automatically, other compilers may also. Or not. Your mileage may vary.