Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codenameone/CodenameOne
/ findNullKeyEntry
Method
findNullKeyEntry
Ports/CLDC11/src/java/util/HashMap.java:462–467 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
460
}
461
462
final
Entry<K,V> findNullKeyEntry() {
463
Entry<K,V> m = elementData[0];
464
while
(m != null && m.key != null)
465
m = m.next;
466
return
m;
467
}
468
469
/// Returns whether this map is empty.
470
///
Callers
4
getEntry
Method · 0.95
putImpl
Method · 0.95
get
Method · 0.45
putImpl
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected