mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
16 lines
389 B
Go
16 lines
389 B
Go
package yqlib
|
|
|
|
func splitDocumentOperator(_ *dataTreeNavigator, context Context, _ *ExpressionNode) (Context, error) {
|
|
log.Debugf("splitDocumentOperator")
|
|
|
|
var index uint
|
|
for el := context.MatchingNodes.Front(); el != nil; el = el.Next() {
|
|
candidate := el.Value.(*CandidateNode)
|
|
candidate.SetDocument(index)
|
|
candidate.SetParent(nil)
|
|
index = index + 1
|
|
}
|
|
|
|
return context, nil
|
|
}
|