i just stumbled onto this comment.
public static int lowestOneBit(int i) {
// HD, Section 2-1
return i & -i;
}
in the 1.5 java source. what does this comment mean? is it a reference to a book? a spec?
HD probably refers to Hacker's Delight by Henry S. Warren. Indeed, this formula appears on page 11, section 2-1.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With