yq/pkg/yqlib/treeops/operator_self.go

8 lines
173 B
Go
Raw Normal View History

2020-10-20 04:33:20 +00:00
package treeops
2020-10-21 01:54:58 +00:00
import "container/list"
2020-10-20 04:33:20 +00:00
2020-10-21 01:54:58 +00:00
func SelfOperator(d *dataTreeNavigator, matchMap *list.List, pathNode *PathTreeNode) (*list.List, error) {
2020-10-20 04:33:20 +00:00
return matchMap, nil
}