Files
dolt/types/value.go
2015-06-12 15:22:27 -07:00

12 lines
171 B
Go

package types
import (
"github.com/attic-labs/noms/ref"
)
// Value is implemented by every noms value
type Value interface {
Equals(other Value) bool
Ref() ref.Ref
}