()
| 436 | /** Returns an immutable empty dict. */ |
| 437 | // Safe because the empty singleton is immutable. |
| 438 | @SuppressWarnings("unchecked") |
| 439 | public static <K, V> Dict<K, V> empty() { |
| 440 | return (Dict<K, V>) EMPTY; |
| 441 | } |
| 442 | |
| 443 | /** Returns a new empty dict with the specified mutability. */ |
| 444 | public static <K, V> Dict<K, V> of(@Nullable Mutability mu) { |
no outgoing calls