| 12345678910111213141516171819202122232425262728293031323334 |
- package missinggo
- import "reflect"
- func Max(_less interface{}, vals ...interface{}) interface{} {
- ret := reflect.ValueOf(vals[0])
- retType := ret.Type()
- less := reflect.ValueOf(_less)
- for _, _v := range vals[1:] {
- v := reflect.ValueOf(_v).Convert(retType)
- out := less.Call([]reflect.Value{ret, v})
- if out[0].Bool() {
- ret = v
- }
- }
- return ret.Interface()
- }
- func MaxInt(first int64, rest ...interface{}) int64 {
- return Max(func(l, r interface{}) bool {
- return l.(int64) < r.(int64)
- }, append([]interface{}{first}, rest...)...).(int64)
- }
- func MinInt(first interface{}, rest ...interface{}) int64 {
- ret := reflect.ValueOf(first).Int()
- for _, _i := range rest {
- i := reflect.ValueOf(_i).Int()
- if i < ret {
- ret = i
- }
- }
- return ret
- }
|