mirror of
https://github.com/tursom/GoCollections.git
synced 2025-03-16 02:50:31 +08:00
36 lines
568 B
Go
36 lines
568 B
Go
package lang
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type Complex64 complex64
|
|
|
|
func (i Complex64) AsComplex64() complex64 {
|
|
return complex64(i)
|
|
}
|
|
|
|
func (i Complex64) String() string {
|
|
return fmt.Sprint(complex64(i))
|
|
}
|
|
|
|
func (i Complex64) AsObject() Object {
|
|
return i
|
|
}
|
|
|
|
func (i Complex64) Equals(e Object) bool {
|
|
i2, ok := e.(Complex64)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return i == i2
|
|
}
|
|
|
|
func (i Complex64) ToString() String {
|
|
return NewString(i.String())
|
|
}
|
|
|
|
func (i Complex64) HashCode() int32 {
|
|
return Float32(real(complex64(i))).HashCode() ^ Float32(imag(complex64(i))).HashCode()
|
|
}
|