mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-30 03:20:18 -06:00
7 lines
110 B
Go
7 lines
110 B
Go
package types
|
|
|
|
// Value is implemented by every noms value
|
|
type Value interface {
|
|
Equals(other Value) bool
|
|
}
|