MCPcopy Index your code
hub / github.com/Shopify/go-lua / bMode

Function bMode

instructions.go:222–222  ·  view source on GitHub ↗
(m opCode)

Source from the content-addressed store, hash-verified

220
221func opMode(m opCode) int { return int(opModes[m] & 3) }
222func bMode(m opCode) byte { return (opModes[m] >> 4) & 3 }
223func cMode(m opCode) byte { return (opModes[m] >> 2) & 3 }
224func testAMode(m opCode) bool { return opModes[m]&(1<<6) != 0 }
225func testTMode(m opCode) bool { return opModes[m]&(1<<7) != 0 }

Callers 2

StringMethod · 0.85
EncodeABCMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected