misalignedEqualsIgnoreCase() — netty Function Reference
Architecture documentation for the misalignedEqualsIgnoreCase() function in AsciiString.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4209a38f_b195_ecd8_34d6_6c93b265b3f1["misalignedEqualsIgnoreCase()"] a41de6d4_fd08_8a12_95fd_35db12fdb4cc["AsciiString"] 4209a38f_b195_ecd8_34d6_6c93b265b3f1 -->|defined in| a41de6d4_fd08_8a12_95fd_35db12fdb4cc 0aa52b3b_ba4d_c24c_6dd8_7abe1be70fb9["contentEqualsIgnoreCase()"] 0aa52b3b_ba4d_c24c_6dd8_7abe1be70fb9 -->|calls| 4209a38f_b195_ecd8_34d6_6c93b265b3f1 5a9ed78d_0890_217e_ba59_a56f5862a872["equalsIgnoreCase()"] 4209a38f_b195_ecd8_34d6_6c93b265b3f1 -->|calls| 5a9ed78d_0890_217e_ba59_a56f5862a872 style 4209a38f_b195_ecd8_34d6_6c93b265b3f1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/AsciiString.java lines 560–569
private boolean misalignedEqualsIgnoreCase(AsciiString other) {
byte[] value = this.value;
byte[] otherValue = other.value;
for (int i = offset, j = other.offset, end = offset + length; i < end; ++i, ++j) {
if (!equalsIgnoreCase(value[i], otherValue[j])) {
return false;
}
}
return true;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does misalignedEqualsIgnoreCase() do?
misalignedEqualsIgnoreCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiString.java.
Where is misalignedEqualsIgnoreCase() defined?
misalignedEqualsIgnoreCase() is defined in common/src/main/java/io/netty/util/AsciiString.java at line 560.
What does misalignedEqualsIgnoreCase() call?
misalignedEqualsIgnoreCase() calls 1 function(s): equalsIgnoreCase.
What calls misalignedEqualsIgnoreCase()?
misalignedEqualsIgnoreCase() is called by 1 function(s): contentEqualsIgnoreCase.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free