当前位置: 首页>>代码示例>>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;未经允许,请勿转载。