Returns an empty immutable table.
()
| 44 | public abstract class ImmutableTable<R, C, V> extends AbstractTable<R, C, V> { |
| 45 | /** Returns an empty immutable table. */ |
| 46 | @SuppressWarnings("unchecked") |
| 47 | public static <R, C, V> ImmutableTable<R, C, V> of() { |
| 48 | return (ImmutableTable<R, C, V>) SparseImmutableTable.EMPTY; |
| 49 | } |
| 50 | |
| 51 | /** Returns an immutable table containing a single cell. */ |
| 52 |