(E toElement, boolean inclusive)
| 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); |
| 502 | } |
| 503 | @Override |
| 504 | public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { |
| 505 | return new KeySet<E>((ConcurrentNavigableMap2)m.tailMap(fromElement, inclusive),hasValues); |