Home / Function/ linearContainsLowerCase() — netty Function Reference

linearContainsLowerCase() — netty Function Reference

Architecture documentation for the linearContainsLowerCase() function in AsciiStringUtil.java from the netty codebase.

Function java CommonUtil Logging calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  c2ee3a38_b203_eb6b_de8d_1ff84daa073c["linearContainsLowerCase()"]
  84873396_ba4c_3002_b5f9_9b7743d03751["AsciiStringUtil"]
  c2ee3a38_b203_eb6b_de8d_1ff84daa073c -->|defined in| 84873396_ba4c_3002_b5f9_9b7743d03751
  21106794_3e29_aab2_bb7f_344a799d8acc["containsLowerCase()"]
  21106794_3e29_aab2_bb7f_344a799d8acc -->|calls| c2ee3a38_b203_eb6b_de8d_1ff84daa073c
  daceb129_5a52_fe79_132f_92f11063b370["isLowerCase()"]
  c2ee3a38_b203_eb6b_de8d_1ff84daa073c -->|calls| daceb129_5a52_fe79_132f_92f11063b370
  style c2ee3a38_b203_eb6b_de8d_1ff84daa073c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/AsciiStringUtil.java lines 175–183

    private static boolean linearContainsLowerCase(final byte[] byteArray, final int offset, final int length) {
        final int end = offset + length;
        for (int idx = offset; idx < end; ++idx) {
            if (isLowerCase(byteArray[idx])) {
                return true;
            }
        }
        return false;
    }

Domain

Subdomains

Frequently Asked Questions

What does linearContainsLowerCase() do?
linearContainsLowerCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiStringUtil.java.
Where is linearContainsLowerCase() defined?
linearContainsLowerCase() is defined in common/src/main/java/io/netty/util/AsciiStringUtil.java at line 175.
What does linearContainsLowerCase() call?
linearContainsLowerCase() calls 1 function(s): isLowerCase.
What calls linearContainsLowerCase()?
linearContainsLowerCase() is called by 1 function(s): containsLowerCase.

Analyze Your Own Codebase

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

Try Supermodel Free