public function testSortedIndex()
 {
     // from js
     $numbers = array(10, 20, 30, 40, 50);
     $num = 35;
     $index = __u::sortedIndex($numbers, $num);
     $this->assertEquals(3, $index, '35 should be inserted at index 3');
     // extra
     $this->assertEquals(3, __u($numbers)->sortedIndex(35), '35 should be inserted at index 3 with OO-style call');
     // docs
     $this->assertEquals(3, __u::sortedIndex(array(10, 20, 30, 40), 35));
 }