Home / Function/ floorKey() — netty Function Reference

floorKey() — netty Function Reference

Architecture documentation for the floorKey() function in ConcurrentSkipListIntObjMultimap.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  0e9b6d92_d870_2ebd_c53a_c2fbc2723621["floorKey()"]
  d9a8da36_aab9_ab33_dc67_870b34dcd270["ConcurrentSkipListIntObjMultimap"]
  0e9b6d92_d870_2ebd_c53a_c2fbc2723621 -->|defined in| d9a8da36_aab9_ab33_dc67_870b34dcd270
  73583e8b_7c0e_6565_1f6c_c76bfaba5388["findNear()"]
  0e9b6d92_d870_2ebd_c53a_c2fbc2723621 -->|calls| 73583e8b_7c0e_6565_1f6c_c76bfaba5388
  style 0e9b6d92_d870_2ebd_c53a_c2fbc2723621 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java lines 1355–1358

    public int floorKey(int key) {
        Node<V> n = findNear(key, LT | EQ);
        return n == null ? noKey : n.key;
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does floorKey() do?
floorKey() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java.
Where is floorKey() defined?
floorKey() is defined in common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java at line 1355.
What does floorKey() call?
floorKey() calls 1 function(s): findNear.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free