Home / Function/ forEachByteDesc0() — netty Function Reference

forEachByteDesc0() — netty Function Reference

Architecture documentation for the forEachByteDesc0() function in AsciiString.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  265d4a41_5398_150f_d619_b7afe487f1e7["forEachByteDesc0()"]
  a41de6d4_fd08_8a12_95fd_35db12fdb4cc["AsciiString"]
  265d4a41_5398_150f_d619_b7afe487f1e7 -->|defined in| a41de6d4_fd08_8a12_95fd_35db12fdb4cc
  c76f81bd_77bd_272b_68ce_0af364045ddb["forEachByteDesc()"]
  c76f81bd_77bd_272b_68ce_0af364045ddb -->|calls| 265d4a41_5398_150f_d619_b7afe487f1e7
  style 265d4a41_5398_150f_d619_b7afe487f1e7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/AsciiString.java lines 315–323

    private int forEachByteDesc0(int index, int length, ByteProcessor visitor) throws Exception {
        final int end = offset + index;
        for (int i = offset + index + length - 1; i >= end; --i) {
            if (!visitor.process(value[i])) {
                return i - offset;
            }
        }
        return -1;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does forEachByteDesc0() do?
forEachByteDesc0() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiString.java.
Where is forEachByteDesc0() defined?
forEachByteDesc0() is defined in common/src/main/java/io/netty/util/AsciiString.java at line 315.
What calls forEachByteDesc0()?
forEachByteDesc0() is called by 1 function(s): forEachByteDesc.

Analyze Your Own Codebase

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

Try Supermodel Free