MCPcopy Create free account
hub / github.com/google/gapid / DivS

Method DivS

core/codegen/arithmetic.go:245–247  ·  view source on GitHub ↗

DivS returns x / y. The types of the two values must be equal.

(x *Value, y interface{})

Source from the content-addressed store, hash-verified

243
244// DivS returns x / y. The types of the two values must be equal.
245func (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.

Callers

nothing calls this directly

Calls 2

DivMethod · 0.95
ScalarMethod · 0.95

Tested by

no test coverage detected