mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
21 lines
575 B
Go
21 lines
575 B
Go
package yqlib
|
|
|
|
import (
|
|
"container/list"
|
|
"fmt"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
func GetDocumentIndexOperator(d *dataTreeNavigator, matchingNodes *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
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 := &CandidateNode{Node: node, Document: candidate.Document, Path: candidate.Path}
|
|
results.PushBack(scalar)
|
|
}
|
|
return results, nil
|
|
}
|