explicit collection types (#3683)

This commit is contained in:
wardn
2017-09-09 19:56:30 -07:00
committed by Aaron Boodman
parent 484587a2b4
commit 79e285e5d5
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ import "github.com/attic-labs/noms/go/d"
type listLeafSequence struct {
leafSequence
values []Value
values ValueSlice
}
func newListLeafSequence(vrw ValueReadWriter, v ...Value) sequence {

View File

@@ -8,7 +8,7 @@ import "github.com/attic-labs/noms/go/d"
type mapLeafSequence struct {
leafSequence
data []mapEntry // sorted by entry.key.Hash()
data mapEntrySlice // sorted by entry.key.Hash()
}
type mapEntry struct {

View File

@@ -8,7 +8,7 @@ import "github.com/attic-labs/noms/go/d"
type setLeafSequence struct {
leafSequence
data []Value // sorted by Hash()
data ValueSlice // sorted by Hash()
}
func newSetLeafSequence(vrw ValueReadWriter, v ...Value) orderedSequence {