toLowerCase() — netty Function Reference
Architecture documentation for the toLowerCase() function in SWARUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cf12be09_4534_7ea0_a078_45d29026d5f5["toLowerCase()"] 42ee86cb_49f5_6d26_1f37_9aa45922bfe1["SWARUtil"] cf12be09_4534_7ea0_a078_45d29026d5f5 -->|defined in| 42ee86cb_49f5_6d26_1f37_9aa45922bfe1 4abd060d_3f20_7d88_268d_11e360f76723["applyUpperCasePattern()"] cf12be09_4534_7ea0_a078_45d29026d5f5 -->|calls| 4abd060d_3f20_7d88_268d_11e360f76723 style cf12be09_4534_7ea0_a078_45d29026d5f5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/internal/SWARUtil.java lines 143–146
public static long toLowerCase(final long word) {
final long mask = applyUpperCasePattern(word) >>> 2;
return word | mask;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does toLowerCase() do?
toLowerCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/SWARUtil.java.
Where is toLowerCase() defined?
toLowerCase() is defined in common/src/main/java/io/netty/util/internal/SWARUtil.java at line 143.
What does toLowerCase() call?
toLowerCase() calls 1 function(s): applyUpperCasePattern.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free