Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/L-JINBIN/ApkDataMultiplexing
/ writeInt
Method
writeInt
src/bin/io/RandomAccessFile.java:67–67 ·
view source on GitHub ↗
(int i)
Source
from the content-addressed store, hash-verified
65
}
66
67
default
void
writeInt(
int
i) throws IOException {
68
write(i & 0xFF);
69
write(i >>> 8 & 0xFF);
70
write(i >>> 16 & 0xFF);
Callers
nothing calls this directly
Implementers
1
BufferedRandomAccessFile
src/bin/io/BufferedRandomAccessFile.ja
Calls
no outgoing calls
Tested by
no test coverage detected