DivS returns x / y. The types of the two values must be equal.
(x *Value, y interface{})
| 243 | |
| 244 | // DivS returns x / y. The types of the two values must be equal. |
| 245 | func (b *Builder) DivS(x *Value, y interface{}) *Value { |
| 246 | return b.Div(x, b.Scalar(y)) |
| 247 | } |
| 248 | |
| 249 | // And performs a bitwise-and of the two integers. |
| 250 | // The types of the two values must be equal. |