On Thu, 17 Jun 2010 10:00:24 +0200, Don <[email protected]> wrote: > (D has introduced ANOTHER instance of this with the ridiculous >>> > operator. > byte b = -1; > byte c = b >>> 1; > Guess what c is! > ) >
127, right? I know at least RISC processors tend to have instructions for both a logical and algebraic right shift. In that context, it makes sense for a systems programming language.
