You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pclass="shortcomment cmt">Returns the node/index pair pointing to the location of the leaf node key preceding the one at <code>index</code> in <code>leaf</code>.</p><divclass="fullcomment"><divclass="comment cmt"><p>Returns the node/index pair pointing to the location of the leaf node key preceding the one at <code>index</code> in <code>leaf</code>.
<pclass="shortcomment cmt">Returns a bounded iterator over a range of key/value pairs in the tree in descending sorted key order.</p><divclass="fullcomment"><divclass="comment cmt"><p>Returns a bounded iterator over a range of key/value pairs in the tree in descending sorted key order. The range of key/value pairs in the iterator is specified by <code>bounds</code>. <code>bounds</code> must contain one or two pairs where the first element in the pair is a symbol corresponding to the type of bound (i.e. '<, '<=, '>, '>=) and the second element is a key value.</p><p>An example of a reverse bounded iterator over all elements in a tree (with <code>String</code> keys) that will include all keys that sort greater than or equal to "a" and up to but not including "e", iterated over in reverse order, is <code>reverseBoundedIterator( ('>=, "a"), ('<, "e") )</code>.
<pclass="shortcomment cmt">Returns a bounded iterator over a range of keys in the tree in descending sorted key order.</p><divclass="fullcomment"><divclass="comment cmt"><p>Returns a bounded iterator over a range of keys in the tree in descending sorted key order. The <code>bounds</code> parameter is the same as for <ahref="#boundedIterator(bounds:(Symbol,K)*):Iterator[(K,V)]" class="extmbr" name="xyz.hyperreal.btree.BPlusTree#boundedIterator">boundedIterator</a>.
<pclass="shortcomment cmt">Returns a bounded iterator over a range of key positions (node/index pairs) in the tree in descending sorted key order.</p><divclass="fullcomment"><divclass="comment cmt"><p>Returns a bounded iterator over a range of key positions (node/index pairs) in the tree in descending sorted key order. The <code>bounds</code> parameter is the same as for <ahref="#boundedIterator(bounds:(Symbol,K)*):Iterator[(K,V)]" class="extmbr" name="xyz.hyperreal.btree.BPlusTree#boundedIterator">boundedIterator</a>.
<pclass="shortcomment cmt">Returns a bounded iterator over a range of values in the tree in descending sorted key order.</p><divclass="fullcomment"><divclass="comment cmt"><p>Returns a bounded iterator over a range of values in the tree in descending sorted key order. The <code>bounds</code> parameter is the same as for <ahref="#boundedIterator(bounds:(Symbol,K)*):Iterator[(K,V)]" class="extmbr" name="xyz.hyperreal.btree.BPlusTree#boundedIterator">boundedIterator</a>.
0 commit comments