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

Method keySet

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

Source from the content-addressed store, hash-verified

307 synchronized (lock) { return map.isEmpty(); }
308 }
309 public Set<K> keySet() {
310 synchronized (lock) { return new SynchronizedSet<K>(lock, map.keySet()); }
311 }
312 public V put(K key, V value) {
313 synchronized (lock) { return map.put(key, value); }
314 }

Callers

nothing calls this directly

Calls 1

keySetMethod · 0.65

Tested by

no test coverage detected