floorEntryOrKeyMismatch() — netty Function Reference
Architecture documentation for the floorEntryOrKeyMismatch() function in ConcurrentSkipListIntObjMultimapTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 75387d3c_0784_5795_abaf_661bfa6b66c9["floorEntryOrKeyMismatch()"] b8d62292_25db_2195_8bbe_2ebd67dc18b5["ConcurrentSkipListIntObjMultimapTest"] 75387d3c_0784_5795_abaf_661bfa6b66c9 -->|defined in| b8d62292_25db_2195_8bbe_2ebd67dc18b5 style 75387d3c_0784_5795_abaf_661bfa6b66c9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java lines 294–309
@ParameterizedTest
@ValueSource(booleans = {true, false})
void floorEntryOrKeyMismatch(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.floorKey(2));
assertEquals(new IntEntry<>(1, "a"), map.floorEntry(2));
assertEquals(3, map.floorKey(3));
assertEquals(new IntEntry<>(3, "b"), map.floorEntry(3));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does floorEntryOrKeyMismatch() do?
floorEntryOrKeyMismatch() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java.
Where is floorEntryOrKeyMismatch() defined?
floorEntryOrKeyMismatch() is defined in common/src/test/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimapTest.java at line 294.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free