mirror of
https://github.com/tursom/GoCollections.git
synced 2025-02-12 10:40:15 +08:00
70 lines
938 B
Go
70 lines
938 B
Go
package lang
|
|
|
|
import "strconv"
|
|
|
|
type UInt uint
|
|
|
|
type AsUInt interface {
|
|
Object
|
|
AsUInt() UInt
|
|
}
|
|
|
|
func CastUInt(v any) (uint, bool) {
|
|
switch i := v.(type) {
|
|
case uint:
|
|
return i, true
|
|
case AsUInt:
|
|
return i.AsUInt().V(), true
|
|
default:
|
|
return 0, false
|
|
}
|
|
}
|
|
|
|
func EqualsUInt(i1 AsUInt, i2 any) bool {
|
|
i2, ok := CastUInt(i2)
|
|
return ok && i2 == i1.AsUInt().V()
|
|
}
|
|
|
|
func (i UInt) V() uint {
|
|
return uint(i)
|
|
}
|
|
|
|
func (i *UInt) P() *uint {
|
|
return (*uint)(i)
|
|
}
|
|
|
|
func (i UInt) AsUInt() UInt {
|
|
return i
|
|
}
|
|
|
|
func (i UInt) String() string {
|
|
return strconv.FormatUint(uint64(i), 10)
|
|
}
|
|
|
|
func (i UInt) AsObject() Object {
|
|
return i
|
|
}
|
|
|
|
func (i UInt) Equals(e Object) bool {
|
|
return EqualsUInt(i, e)
|
|
}
|
|
|
|
func (i UInt) ToString() String {
|
|
return NewString(i.String())
|
|
}
|
|
|
|
func (i UInt) HashCode() int32 {
|
|
return int32(i)
|
|
}
|
|
|
|
func (i UInt) Compare(t UInt) int {
|
|
switch {
|
|
case i > t:
|
|
return 1
|
|
case i == t:
|
|
return 0
|
|
default:
|
|
return -1
|
|
}
|
|
}
|