index
:
go118-netip
Go 1.18's net/netip package for 1.17
Jason A. Donenfeld
about
summary
refs
log
tree
commit
diff
stats
path:
root
/
internal
/
itoa
/
stub.go
blob: c50999890da301515a36f5c04fd28375034edbde (
plain
) (
blame
)
1
2
3
4
5
6
7
package
itoa
import
"strconv"
func
Itoa
(
i
int
)
string
{
return
strconv
.
Itoa
(
i
)
}