Hacker News new | ask | show | jobs
by dataflow 1326 days ago
>>> is bitwise right shift (fills in with zeros), >> is arithmetic right shift (fills in with the sign bit).
1 comments

> >>> is bitwise right shift

Well, they're both bitwise right shifts, the ">>>" is specifically a logical or unsigned right shift.

Whoops yes I meant logical.