Home / Function/ forEachByte0() — netty Function Reference

forEachByte0() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  b8b73d94_f1a6_829c_c517_2c01af5da462["forEachByte0()"]
  a41de6d4_fd08_8a12_95fd_35db12fdb4cc["AsciiString"]
  b8b73d94_f1a6_829c_c517_2c01af5da462 -->|defined in| a41de6d4_fd08_8a12_95fd_35db12fdb4cc
  a5b1546d_4d5a_8b83_8038_39d6ff8582f3["forEachByte()"]
  a5b1546d_4d5a_8b83_8038_39d6ff8582f3 -->|calls| b8b73d94_f1a6_829c_c517_2c01af5da462
  style b8b73d94_f1a6_829c_c517_2c01af5da462 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/AsciiString.java lines 280–288

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

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free