lowerEntryOrKeyMismatch() — netty Function Reference
Architecture documentation for the lowerEntryOrKeyMismatch() function in ConcurrentSkipListIntObjMultimapTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b3aa6dfd_1846_9e0a_8c90_6e0b75d90699["lowerEntryOrKeyMismatch()"] b8d62292_25db_2195_8bbe_2ebd67dc18b5["ConcurrentSkipListIntObjMultimapTest"] b3aa6dfd_1846_9e0a_8c90_6e0b75d90699 -->|defined in| b8d62292_25db_2195_8bbe_2ebd67dc18b5 style b3aa6dfd_1846_9e0a_8c90_6e0b75d90699 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java lines 250–267
@ParameterizedTest
@ValueSource(booleans = {true, false})
void lowerEntryOrKeyMismatch(boolean multiMapped) throws Exception {
map.put(1, "a");
map.put(3, "b");
map.put(4, "c");
if (multiMapped) {
map.put(1, "a");
map.put(3, "b");
map.put(4, "c");
}
assertEquals(1, map.lowerKey(3));
assertEquals(new IntEntry<>(1, "a"), map.lowerEntry(3));
assertEquals(3, map.lowerKey(4));
assertEquals(new IntEntry<>(3, "b"), map.lowerEntry(4));
assertEquals(noKey, map.lowerKey(1));
assertNull(map.lowerEntry(1));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does lowerEntryOrKeyMismatch() do?
lowerEntryOrKeyMismatch() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java.
Where is lowerEntryOrKeyMismatch() defined?
lowerEntryOrKeyMismatch() is defined in common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java at line 250.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free