mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
12 lines
175 B
Go
12 lines
175 B
Go
package number
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"golang.org/x/exp/constraints"
|
|
)
|
|
|
|
func ParseInt[T constraints.Integer](s string) T {
|
|
r, _ := strconv.ParseInt(s, 10, 64)
|
|
return T(r)
|
|
}
|