1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/runtime/values/none.go

43 lines
613 B
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package values
import (
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values/types"
2018-09-18 22:42:38 +02:00
)
type none struct{}
var None = &none{}
func (t *none) MarshalJSON() ([]byte, error) {
return []byte("null"), nil
}
func (t *none) Type() core.Type {
return types.None
2018-09-18 22:42:38 +02:00
}
func (t *none) String() string {
return ""
}
func (t *none) Compare(other core.Value) int64 {
if other.Type() == types.None {
2018-09-18 22:42:38 +02:00
return 0
}
return -1
2018-09-18 22:42:38 +02:00
}
func (t *none) Unwrap() interface{} {
return nil
}
2018-10-05 21:17:22 +02:00
func (t *none) Hash() uint64 {
2018-09-18 22:42:38 +02:00
return 0
}
2018-09-27 17:53:26 +02:00
func (t *none) Copy() core.Value {
2018-09-27 17:53:26 +02:00
return None
}