Skip to content

Instantly share code, notes, and snippets.

@labi-le
labi-le / .go
Created October 3, 2022 04:49
fast string to int conversion golang
//
// BenchmarkFastAtoi
// BenchmarkFastAtoi-6 284165764 4.163 ns/op
//
func FastAtoi(s string) int {
var val int
for _, c := range s {
val = val*10 + int(c-'0')
}