(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive)
| 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); |