mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-31 03:18:43 -06:00
14 lines
209 B
Go
14 lines
209 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
|
|
Chunks() []Future
|
|
TypeRef() TypeRef
|
|
}
|