「Crossfilter」ソースを確認したところ、>>を使用する関数に出くわしました。以下は関数です:
// Similar to bisectLeft, but returns an insertion point which comes after (to
// the right of) any existing entries of x in a.
//
// The returned insertion point i partitions the array into two halves so that
// all v <= x for v in a[lo:i] for the left side and all v > x for v in
// a[i:hi] for the right side.
function bisectRight(a, x, lo, hi) {
while (lo < hi) {
var mid = lo + hi >> 1;
if (x < f(a[mid])) hi = mid;
else lo = mid + 1;
}
return lo;
}
グーグルは何の結果も返していません、そして私はこれまでこれを見たことがありません。助けてくれてありがとう。