findNearEntry() — netty Function Reference
Architecture documentation for the findNearEntry() function in ConcurrentSkipListIntObjMultimap.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 053ce890_e4be_74c8_2588_81d60d10b2be["findNearEntry()"] d9a8da36_aab9_ab33_dc67_870b34dcd270["ConcurrentSkipListIntObjMultimap"] 053ce890_e4be_74c8_2588_81d60d10b2be -->|defined in| d9a8da36_aab9_ab33_dc67_870b34dcd270 9bf89e40_1f0c_354d_1477_64f9e13ca82f["lowerEntry()"] 9bf89e40_1f0c_354d_1477_64f9e13ca82f -->|calls| 053ce890_e4be_74c8_2588_81d60d10b2be 3a7a687d_abef_e173_8d08_63424d3a09d2["floorEntry()"] 3a7a687d_abef_e173_8d08_63424d3a09d2 -->|calls| 053ce890_e4be_74c8_2588_81d60d10b2be 446696e2_e526_ea3c_0bf6_69b196796e68["ceilingEntry()"] 446696e2_e526_ea3c_0bf6_69b196796e68 -->|calls| 053ce890_e4be_74c8_2588_81d60d10b2be 670f5ada_07f3_0799_afee_6d96f25ce2cd["higherEntry()"] 670f5ada_07f3_0799_afee_6d96f25ce2cd -->|calls| 053ce890_e4be_74c8_2588_81d60d10b2be 73583e8b_7c0e_6565_1f6c_c76bfaba5388["findNear()"] 053ce890_e4be_74c8_2588_81d60d10b2be -->|calls| 73583e8b_7c0e_6565_1f6c_c76bfaba5388 style 053ce890_e4be_74c8_2588_81d60d10b2be fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java lines 1029–1039
final IntEntry<V> findNearEntry(int key, int rel) {
for (;;) {
Node<V> n; V v;
if ((n = findNear(key, rel)) == null) {
return null;
}
if ((v = n.val) != null) {
return new IntEntry<V>(n.key, v);
}
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does findNearEntry() do?
findNearEntry() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java.
Where is findNearEntry() defined?
findNearEntry() is defined in common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java at line 1029.
What does findNearEntry() call?
findNearEntry() calls 1 function(s): findNear.
What calls findNearEntry()?
findNearEntry() is called by 4 function(s): ceilingEntry, floorEntry, higherEntry, lowerEntry.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free