MCPcopy Create free account
hub / github.com/ReadyTalk/avian / emptyMap

Method emptyMap

classpath/java/util/Collections.java:185–188  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

183 }
184
185 public static final <K,V> Map<K,V> emptyMap() {
186 return (Map<K, V>) new UnmodifiableMap<Object, Object>(
187 new HashMap<Object, Object>(0));
188 }
189
190 public static final <T> Set<T> emptySet() {
191 return (Set<T>) new UnmodifiableSet<Object>(

Callers 1

testValuesMethod · 0.80

Calls

no outgoing calls

Tested by 1

testValuesMethod · 0.64