SubS returns x - y. The types of the two values must be equal.
(x *Value, y interface{})
| 185 | |
| 186 | // SubS returns x - y. The types of the two values must be equal. |
| 187 | func (b *Builder) SubS(x *Value, y interface{}) *Value { |
| 188 | return b.Sub(x, b.Scalar(y)) |
| 189 | } |
| 190 | |
| 191 | // Mul returns x * y. The types of the two values must be equal. |
| 192 | func (b *Builder) Mul(x, y *Value) *Value { |