本文整理匯總了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())
}