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