yq/pkg/yqlib/operator_document_index.go

21 lines
537 B
Go
Raw Normal View History

2020-11-06 01:11:38 +00:00
package yqlib
import (
"container/list"
"fmt"
"gopkg.in/yaml.v3"
)
2021-01-12 23:18:53 +00:00
func getDocumentIndexOperator(d *dataTreeNavigator, matchingNodes *list.List, expressionNode *ExpressionNode) (*list.List, error) {
2020-11-06 01:11:38 +00:00
var results = list.New()
for el := matchingNodes.Front(); el != nil; el = el.Next() {
candidate := el.Value.(*CandidateNode)
node := &yaml.Node{Kind: yaml.ScalarNode, Value: fmt.Sprintf("%v", candidate.Document), Tag: "!!int"}
scalar := candidate.CreateChild(nil, node)
2020-11-06 01:11:38 +00:00
results.PushBack(scalar)
}
return results, nil
}