0
0

Merge pull request #597 from caseymrm/patch-1

Add comments to Location struct
This commit is contained in:
Marty Schoch 2017-05-25 11:48:42 -04:00 committed by GitHub
commit 3885595cb8

View File

@ -36,9 +36,14 @@ func (ap ArrayPositions) Equals(other ArrayPositions) bool {
}
type Location struct {
// Pos is the position of the term within the field, starting at 1
Pos uint64 `json:"pos"`
// Start and End are the byte offsets of the term in the field
Start uint64 `json:"start"`
End uint64 `json:"end"`
// ArrayPositions contains the positions of the term within any elements.
ArrayPositions ArrayPositions `json:"array_positions"`
}