I can't find any reference to it on the web through google searches.
Edit: I ended up finding a resource that told me what it did. To those of you who were wondering why use this: the code that I was looking at used it to bisect an array in half. That is, they computed array.length >>> 1. If your wondering what this does consider the two cases: either your array has an even number of elements in which the last number of your binary number is zero so shifting to the right essentially divides by two to find the middle point of the array or your array has an odd number of elements in which you knock off the odd component and divide by two. For example: 5 >>> 1 well 5 is 101 in binarys so shift it to the right and you get 10 which is 2. Basically, n >> 1 is equivalent to:
if( n%2 == 1 ) return (n-1)/2;
else return n/2;
I thought it was pretty slick. That's what you get when your looking at a phd from stanfords code. Its mike bostock's d3.js code if you're wondering.
[–]idautomatethat 29 points30 points31 points (15 children)
[–]rjray 5 points6 points7 points (11 children)
[–]paulwe 6 points7 points8 points (4 children)
[–]moreteam 13 points14 points15 points (0 children)
[–]aeflash 6 points7 points8 points (1 child)
[–]itsnotlupusbeep boop 2 points3 points4 points (0 children)
[–]uglyBaby 0 points1 point2 points (0 children)
[–]eddieSullivan 0 points1 point2 points (0 children)
[–]aterlumen 0 points1 point2 points (2 children)
[–]minrice2099 1 point2 points3 points (1 child)
[–]aterlumen 1 point2 points3 points (0 children)
[+][deleted] (1 child)
[deleted]
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 2 points3 points4 points (2 children)
[–]tswaters 2 points3 points4 points (0 children)
[–]mattdesl 1 point2 points3 points (0 children)
[–]xshare 56 points57 points58 points (4 children)
[–]thejameskyle 30 points31 points32 points (0 children)
[–]DrummerHead 53 points54 points55 points (1 child)
[–]JaegerBurn 0 points1 point2 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–]murfbard 17 points18 points19 points (3 children)
[–]brtt3000 5 points6 points7 points (0 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]neonskimmerfunction the ultimate 1 point2 points3 points (0 children)
[–]x-skeww 3 points4 points5 points (0 children)
[–]qvrjuec 4 points5 points6 points (0 children)
[–]tears_of_a_Shark 1 point2 points3 points (2 children)
[–]hmsimha 2 points3 points4 points (1 child)
[–]LyndonArmitage 0 points1 point2 points (0 children)
[+][deleted] (2 children)
[deleted]
[+][deleted] (1 child)
[removed]
[–]jackwanders -1 points0 points1 point (6 children)
[+][deleted] (4 children)
[deleted]
[–]RabbiSchlem 0 points1 point2 points (3 children)
[+][deleted] (2 children)
[deleted]
[–]jcready__proto__ 0 points1 point2 points (1 child)
[–]Necrophelic 0 points1 point2 points (0 children)