MCPcopy Index your code
hub / github.com/jankotek/mapdb / subSet

Method subSet

src/main/java/org/mapdb/BTreeMapJava.java:491–498  ·  view source on GitHub ↗
(E fromElement,
                                      boolean fromInclusive,
                                      E toElement,
                                      boolean toInclusive)

Source from the content-addressed store, hash-verified

489 return descendingSet().iterator();
490 }
491 @Override
492 public NavigableSet<E> subSet(E fromElement,
493 boolean fromInclusive,
494 E toElement,
495 boolean toInclusive) {
496 return new KeySet<E>((ConcurrentNavigableMap2)m.subMap(fromElement, fromInclusive,
497 toElement, toInclusive),hasValues);
498 }
499 @Override
500 public NavigableSet<E> headSet(E toElement, boolean inclusive) {
501 return new KeySet<E>((ConcurrentNavigableMap2)m.headMap(toElement, inclusive),hasValues);

Callers 15

testSubSetContentsMethod · 0.80
testSubSetContents2Method · 0.80
testRecursiveSubSetsMethod · 0.80
bashSubSetMethod · 0.80
populatedSetMethod · 0.80
set5Method · 0.80
testSubSetContentsMethod · 0.80
testSubSetContents2Method · 0.80
populatedSetMethod · 0.80
set5Method · 0.80
testSubSetContentsMethod · 0.80
testSubSetContents2Method · 0.80

Calls 1

subMapMethod · 0.45

Tested by 15

testSubSetContentsMethod · 0.64
testSubSetContents2Method · 0.64
testRecursiveSubSetsMethod · 0.64
bashSubSetMethod · 0.64
populatedSetMethod · 0.64
set5Method · 0.64
testSubSetContentsMethod · 0.64
testSubSetContents2Method · 0.64
populatedSetMethod · 0.64
set5Method · 0.64
testSubSetContentsMethod · 0.64
testSubSetContents2Method · 0.64