Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/L-JINBIN/ApkDataMultiplexing
/ writeLong
Method
writeLong
src/bin/io/RandomAccessFile.java:74–74 ·
view source on GitHub ↗
(long l)
Source
from the content-addressed store, hash-verified
72
}
73
74
default
void
writeLong(long l) throws IOException {
75
write((
int
) (l & 0xFF));
76
write((
int
) (l >>> 8 & 0xFF));
77
write((
int
) (l >>> 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