Returns an empty immutable range set.
()
| 52 | */ |
| 53 | |
| 54 | @SuppressWarnings("unchecked") |
| 55 | public static <C extends Comparable> ImmutableRangeSet<C> of() { |
| 56 | return (ImmutableRangeSet<C>) EMPTY; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Returns an immutable range set containing the single range {@link Range#all()}. |
no test coverage detected