mirror of
https://github.com/taigrr/yq
synced 2025-01-18 04:53:17 -08:00
12 lines
299 B
Go
12 lines
299 B
Go
package yqlib
|
|
|
|
import "container/list"
|
|
|
|
func pipeOperator(d *dataTreeNavigator, matchingNodes *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
lhs, err := d.GetMatchingNodes(matchingNodes, pathNode.Lhs)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return d.GetMatchingNodes(lhs, pathNode.Rhs)
|
|
}
|