本文整理汇总了Golang中github.com/couchbaselabs/query/value.Value.Copy方法的典型用法代码示例。如果您正苦于以下问题:Golang Value.Copy方法的具体用法?Golang Value.Copy怎么用?Golang Value.Copy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/couchbaselabs/query/value.Value
的用法示例。
在下文中一共展示了Value.Copy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: RunOnce
func (this *ParentScan) RunOnce(context *Context, parent value.Value) {
this.once.Do(func() {
defer context.Recover() // Recover from any panic
defer close(this.itemChannel) // Broadcast that I have stopped
defer this.notify() // Notify that I have stopped
// Shallow copy of the parent includes
// correlated and annotated aspects
this.sendItem(parent.Copy().(value.AnnotatedValue))
})
}
示例2: Apply
/*
This method sorts the input array value, in N1QL collation
order. It uses the Sort method in the sort package. If the
input value is of type missing return a missing value, and
for all non array values return null.
*/
func (this *ArraySort) Apply(context Context, arg value.Value) (value.Value, error) {
if arg.Type() == value.MISSING {
return value.MISSING_VALUE, nil
} else if arg.Type() != value.ARRAY {
return value.NULL_VALUE, nil
}
cv := arg.Copy()
sorter := value.NewSorter(cv)
sort.Sort(sorter)
return cv, nil
}