yq/pkg/yqlib/operator_document_index.go

21 lines
555 B
Go
Raw Normal View History

2020-11-06 01:11:38 +00:00
package yqlib
import (
"container/list"
"fmt"
"gopkg.in/yaml.v3"
)
func getDocumentIndexOperator(d *dataTreeNavigator, context Context, expressionNode *ExpressionNode) (Context, error) {
2020-11-06 01:11:38 +00:00
var results = list.New()
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
2020-11-06 01:11:38 +00:00
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 context.ChildContext(results), nil
2020-11-06 01:11:38 +00:00
}