mirror of
https://github.com/astaxie/beego.git
synced 2025-07-04 19:10:17 +00:00
only add golang.org vendor
This commit is contained in:
7
vendor/github.com/go-redis/redis/internal/util/safe.go
generated
vendored
7
vendor/github.com/go-redis/redis/internal/util/safe.go
generated
vendored
@ -1,7 +0,0 @@
|
||||
// +build appengine
|
||||
|
||||
package util
|
||||
|
||||
func BytesToString(b []byte) string {
|
||||
return string(b)
|
||||
}
|
19
vendor/github.com/go-redis/redis/internal/util/strconv.go
generated
vendored
19
vendor/github.com/go-redis/redis/internal/util/strconv.go
generated
vendored
@ -1,19 +0,0 @@
|
||||
package util
|
||||
|
||||
import "strconv"
|
||||
|
||||
func Atoi(b []byte) (int, error) {
|
||||
return strconv.Atoi(BytesToString(b))
|
||||
}
|
||||
|
||||
func ParseInt(b []byte, base int, bitSize int) (int64, error) {
|
||||
return strconv.ParseInt(BytesToString(b), base, bitSize)
|
||||
}
|
||||
|
||||
func ParseUint(b []byte, base int, bitSize int) (uint64, error) {
|
||||
return strconv.ParseUint(BytesToString(b), base, bitSize)
|
||||
}
|
||||
|
||||
func ParseFloat(b []byte, bitSize int) (float64, error) {
|
||||
return strconv.ParseFloat(BytesToString(b), bitSize)
|
||||
}
|
12
vendor/github.com/go-redis/redis/internal/util/unsafe.go
generated
vendored
12
vendor/github.com/go-redis/redis/internal/util/unsafe.go
generated
vendored
@ -1,12 +0,0 @@
|
||||
// +build !appengine
|
||||
|
||||
package util
|
||||
|
||||
import (
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
// BytesToString converts byte slice to string.
|
||||
func BytesToString(b []byte) string {
|
||||
return *(*string)(unsafe.Pointer(&b))
|
||||
}
|
Reference in New Issue
Block a user