Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/beanshell/beanshell
/ hashCode
Method
hashCode
src/bsh/org/objectweb/asm/Type.java:734–742 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
732
}
733
734
public
int
hashCode () {
735
int
hc = 13 * sort;
736
if
(sort == Type.OBJECT || sort == Type.ARRAY) {
737
for
(
int
i = off, end = i + len; i < end; i++) {
738
hc = 17 * (hc + buf[i]);
739
}
740
}
741
return
hc;
742
}
743
}
Callers
1
set
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected