checkCommonSuffixSymmetric() — netty Function Reference
Architecture documentation for the checkCommonSuffixSymmetric() function in StringUtilTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4915f9e7_b8b7_1337_f38f_57f2ed7f7fc6["checkCommonSuffixSymmetric()"] 8a8ff062_3462_cc50_2d54_f42c40f72bfa["StringUtilTest"] 4915f9e7_b8b7_1337_f38f_57f2ed7f7fc6 -->|defined in| 8a8ff062_3462_cc50_2d54_f42c40f72bfa 0f361150_635f_f859_038d_ed9351229c2b["checkNotCommonSuffix()"] 0f361150_635f_f859_038d_ed9351229c2b -->|calls| 4915f9e7_b8b7_1337_f38f_57f2ed7f7fc6 9bbfa760_1f83_961f_9f89_72fc98c13fd0["checkCommonSuffix()"] 9bbfa760_1f83_961f_9f89_72fc98c13fd0 -->|calls| 4915f9e7_b8b7_1337_f38f_57f2ed7f7fc6 style 4915f9e7_b8b7_1337_f38f_57f2ed7f7fc6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/internal/StringUtilTest.java lines 156–161
private static boolean checkCommonSuffixSymmetric(String s, String p, int len) {
boolean sp = commonSuffixOfLength(s, p, len);
boolean ps = commonSuffixOfLength(p, s, len);
assertEquals(sp, ps);
return sp;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does checkCommonSuffixSymmetric() do?
checkCommonSuffixSymmetric() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/StringUtilTest.java.
Where is checkCommonSuffixSymmetric() defined?
checkCommonSuffixSymmetric() is defined in common/src/test/java/io/netty/util/internal/StringUtilTest.java at line 156.
What calls checkCommonSuffixSymmetric()?
checkCommonSuffixSymmetric() is called by 2 function(s): checkCommonSuffix, checkNotCommonSuffix.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free