mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-16 10:08:50 -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
|
|
}
|