indexOfLastNonOwsChar() — netty Function Reference
Architecture documentation for the indexOfLastNonOwsChar() function in StringUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD aa374a2c_299f_9819_373c_326ab7e0bdf3["indexOfLastNonOwsChar()"] 2bdecda8_5186_4936_ca05_ebee455a476a["StringUtil"] aa374a2c_299f_9819_373c_326ab7e0bdf3 -->|defined in| 2bdecda8_5186_4936_ca05_ebee455a476a 1601af67_9670_d4fa_3231_1425bfc5e176["CharSequence()"] 1601af67_9670_d4fa_3231_1425bfc5e176 -->|calls| aa374a2c_299f_9819_373c_326ab7e0bdf3 b583cbde_805f_4a49_3374_aa428397a07c["isOws()"] aa374a2c_299f_9819_373c_326ab7e0bdf3 -->|calls| b583cbde_805f_4a49_3374_aa428397a07c style aa374a2c_299f_9819_373c_326ab7e0bdf3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/internal/StringUtil.java lines 718–724
private static int indexOfLastNonOwsChar(CharSequence value, int start, int length) {
int i = length - 1;
while (i > start && isOws(value.charAt(i))) {
i--;
}
return i;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does indexOfLastNonOwsChar() do?
indexOfLastNonOwsChar() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/StringUtil.java.
Where is indexOfLastNonOwsChar() defined?
indexOfLastNonOwsChar() is defined in common/src/main/java/io/netty/util/internal/StringUtil.java at line 718.
What does indexOfLastNonOwsChar() call?
indexOfLastNonOwsChar() calls 1 function(s): isOws.
What calls indexOfLastNonOwsChar()?
indexOfLastNonOwsChar() is called by 1 function(s): CharSequence.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free