(@Nullable E upperBound, BoundType boundType)
| 503 | } |
| 504 | |
| 505 | @Override |
| 506 | public SortedMultiset<E> headMultiset(@Nullable E upperBound, BoundType boundType) { |
| 507 | return new TreeMultiset<E>( |
| 508 | rootReference, |
| 509 | range.intersect(GeneralRange.upTo(comparator(), upperBound, boundType)), |
| 510 | header); |
| 511 | } |
| 512 | |
| 513 | @Override |
| 514 | public SortedMultiset<E> tailMultiset(@Nullable E lowerBound, BoundType boundType) { |
nothing calls this directly
no test coverage detected