本文整理汇总了Golang中ql/interfaces.Value类的典型用法代码示例。如果您正苦于以下问题:Golang Value类的具体用法?Golang Value怎么用?Golang Value使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Value类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Div
func (this IntValue) Div(value interfaces.Value) interfaces.Value {
denominator := value.PrimitiveValue().(int)
// since default value of int question will be set to zero, handle it here to preclude division by zero panic
if denominator == 0 {
return NewIntValue(0)
}
return NewIntValue(this.primitiveValue / denominator)
}
示例2: NEq
func (this BoolValue) NEq(value interfaces.Value) interfaces.Value {
return NewBoolValue(this.primitiveValue != value.PrimitiveValue())
}
示例3: Or
func (this BoolValue) Or(value interfaces.Value) interfaces.Value {
return NewBoolValue(this.primitiveValue || value.PrimitiveValue().(bool))
}
示例4: Sub
func (this IntValue) Sub(value interfaces.Value) interfaces.Value {
return NewIntValue(this.primitiveValue - value.PrimitiveValue().(int))
}
示例5: LT
func (this IntValue) LT(value interfaces.Value) interfaces.Value {
return NewBoolValue(this.primitiveValue < value.PrimitiveValue().(int))
}
示例6: Add
func (this StringValue) Add(value interfaces.Value) interfaces.Value {
return NewStringValue(fmt.Sprintf("%s%s", this.primitiveValue, value.PrimitiveValue().(string)))
}
示例7: LT
func (this StringValue) LT(value interfaces.Value) interfaces.Value {
return NewBoolValue(this.primitiveValue < value.PrimitiveValue().(string))
}
示例8: Eq
func (this StringValue) Eq(value interfaces.Value) interfaces.Value {
return NewBoolValue(this.primitiveValue == value.PrimitiveValue())
}