in reply to Re: Incrementing only the masked bits
in thread Incrementing only the masked bits

My version actually started out in my head closer to:

my $mask= 0x0f000007; my $val= 0; do { printf "0x%08.8x\n", $val & $mask; $val |= ~$mask; ++$val; } while( $val <= ~0 );

but in typing it I decided to simplify. (:

- tye