mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
19 lines
405 B
Go
19 lines
405 B
Go
package yqlib
|
|
|
|
import (
|
|
"container/list"
|
|
)
|
|
|
|
func splitDocumentOperator(d *dataTreeNavigator, matchMap *list.List, expressionNode *ExpressionNode) (*list.List, error) {
|
|
log.Debugf("-- splitDocumentOperator")
|
|
|
|
var index uint = 0
|
|
for el := matchMap.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
candidate.Document = index
|
|
index = index + 1
|
|
}
|
|
|
|
return matchMap, nil
|
|
}
|