(@Nullable E lowerBound, BoundType boundType)
| 511 | } |
| 512 | |
| 513 | @Override |
| 514 | public SortedMultiset<E> tailMultiset(@Nullable E lowerBound, BoundType boundType) { |
| 515 | return new TreeMultiset<E>( |
| 516 | rootReference, |
| 517 | range.intersect(GeneralRange.downTo(comparator(), lowerBound, boundType)), |
| 518 | header); |
| 519 | } |
| 520 | |
| 521 | |
| 522 | static int distinctElements(@Nullable AvlNode<?> node) { |
nothing calls this directly
no test coverage detected