mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
23 lines
628 B
Go
23 lines
628 B
Go
package yqlib
|
|
|
|
import (
|
|
"container/list"
|
|
)
|
|
|
|
func EqualsOperator(d *dataTreeNavigator, matchingNodes *list.List, pathNode *PathTreeNode) (*list.List, error) {
|
|
log.Debugf("-- equalsOperation")
|
|
return crossFunction(d, matchingNodes, pathNode, isEquals)
|
|
}
|
|
|
|
func isEquals(d *dataTreeNavigator, lhs *CandidateNode, rhs *CandidateNode) (*CandidateNode, error) {
|
|
value := false
|
|
|
|
if lhs.Node.Tag == "!!null" {
|
|
value = (rhs.Node.Tag == "!!null")
|
|
} else {
|
|
value = Match(lhs.Node.Value, rhs.Node.Value)
|
|
}
|
|
log.Debugf("%v == %v ? %v", NodeToString(lhs), NodeToString(rhs), value)
|
|
return createBooleanCandidate(lhs, value), nil
|
|
}
|