2 Star 2 Fork 8

王布衣/gox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
compare.go 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-01-15 19:35 . 增加lambda工具包
package lambda
import (
"errors"
"fmt"
"math"
"reflect"
"strings"
)
func BasicComparator(ele interface{}) (Compare, error) {
if c, ok := ele.(Compare); ok {
return c, nil
}
k := reflect.TypeOf(ele).Kind()
support := []reflect.Kind{
reflect.Int,
reflect.Uint8,
reflect.Uint16,
reflect.Uint32,
reflect.Uint64,
reflect.Int8,
reflect.Int16,
reflect.Uint32,
reflect.Int64,
reflect.Float32,
reflect.Float64,
reflect.String,
}
if contain(support, k) {
return &BasicCompare{ele}, nil
}
return nil, errors.New("unknown type")
}
func contain(kinds []reflect.Kind, target reflect.Kind) bool {
for _, k := range kinds {
if k == target {
return true
}
}
return false
}
type Compare interface {
CompareTo(a interface{}) int
}
type BasicCompare struct {
v interface{}
}
func (p *BasicCompare) CompareTo(a interface{}) int {
vt, at := reflect.TypeOf(p.v), reflect.TypeOf(a)
if vt.Kind() != at.Kind() {
panic(fmt.Sprintf("%s is not %s", vt.String(), at.String()))
}
switch p.v.(type) {
case int:
return p.v.(int) - a.(int)
case uint8:
return int(p.v.(uint8) - a.(uint8))
case uint16:
return int(p.v.(uint16) - a.(uint16))
case uint32:
return int(p.v.(uint32) - a.(uint32))
case uint64:
return int(p.v.(uint64) - a.(uint64))
case int8:
return int(p.v.(int8) - a.(int8))
case int16:
return int(p.v.(int16) - a.(int16))
case int32:
return int(p.v.(int32) - a.(int32))
case int64:
return int(p.v.(int64) - a.(int64))
case float32:
v := p.v.(float32) - a.(float32)
if v > 0 {
return int(math.Ceil(float64(v)))
} else if v == 0 {
return 0
} else {
return int(math.Floor(float64(v)))
}
case float64:
v := p.v.(float64) - a.(float64)
if v > 0 {
return int(math.Ceil(v))
} else if v == 0 {
return 0
} else {
return int(math.Floor(v))
}
case string:
return strings.Compare(p.v.(string), a.(string))
default:
panic("unknown type " + at.String())
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gox.git
git@gitee.com:quant1x/gox.git
quant1x
gox
gox
v1.20.8

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385