當前位置: 首頁>>代碼示例>>Golang>>正文


Golang interfaces.Value類代碼示例

本文整理匯總了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)
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:9,代碼來源:intvalue.go

示例2: NEq

func (this BoolValue) NEq(value interfaces.Value) interfaces.Value {
	return NewBoolValue(this.primitiveValue != value.PrimitiveValue())
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:boolvalue.go

示例3: Or

func (this BoolValue) Or(value interfaces.Value) interfaces.Value {
	return NewBoolValue(this.primitiveValue || value.PrimitiveValue().(bool))
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:boolvalue.go

示例4: Sub

func (this IntValue) Sub(value interfaces.Value) interfaces.Value {
	return NewIntValue(this.primitiveValue - value.PrimitiveValue().(int))
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:intvalue.go

示例5: LT

func (this IntValue) LT(value interfaces.Value) interfaces.Value {
	return NewBoolValue(this.primitiveValue < value.PrimitiveValue().(int))
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:intvalue.go

示例6: Add

func (this StringValue) Add(value interfaces.Value) interfaces.Value {
	return NewStringValue(fmt.Sprintf("%s%s", this.primitiveValue, value.PrimitiveValue().(string)))
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:stringvalue.go

示例7: LT

func (this StringValue) LT(value interfaces.Value) interfaces.Value {
	return NewBoolValue(this.primitiveValue < value.PrimitiveValue().(string))
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:stringvalue.go

示例8: Eq

func (this StringValue) Eq(value interfaces.Value) interfaces.Value {
	return NewBoolValue(this.primitiveValue == value.PrimitiveValue())
}
開發者ID:software-engineering-amsterdam,項目名稱:multi-ql,代碼行數:3,代碼來源:stringvalue.go


注:本文中的ql/interfaces.Value類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。