Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ toOctalString
Method
toOctalString
classpath/java/lang/Integer.java:65–67 ·
view source on GitHub ↗
(int v)
Source
from the content-addressed store, hash-verified
63
}
64
65
public
static
String toOctalString(
int
v) {
66
return
Long.toString(((long) v) & 0xFFFFFFFFL, 8);
67
}
68
69
public
static
String toBinaryString(
int
v) {
70
return
Long.toString(((long) v) & 0xFFFFFFFFL, 2);
Callers
nothing calls this directly
Calls
1
toString
Method · 0.95
Tested by
no test coverage detected