mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-11 10:33:08 -06:00
17 lines
351 B
Go
17 lines
351 B
Go
// Copyright 2016 The Noms Authors. All rights reserved.
|
|
// Licensed under the Apache License, version 2.0:
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
package types
|
|
|
|
type sequenceItem interface{}
|
|
|
|
type sequence interface {
|
|
getItem(idx int) sequenceItem
|
|
seqLen() int
|
|
numLeaves() uint64
|
|
valueReader() ValueReader
|
|
Chunks() []Ref
|
|
Type() *Type
|
|
}
|