GoCollections/lang/Complex64.go

42 lines
705 B
Go

/*
* Copyright (c) 2022 tursom. All rights reserved.
* Use of this source code is governed by a GPL-3
* license that can be found in the LICENSE file.
*/
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(i)).HashCode() ^ Float32(imag(i)).HashCode()
}