Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/zxing/zxing
/ get
Method
get
core/src/main/java/com/google/zxing/common/BitArray.java:70–72 ·
view source on GitHub ↗
@param i bit to get @return true iff bit i is set
(int i)
Source
from the content-addressed store, hash-verified
68
* @
return
true iff bit i is set
69
*/
70
public
boolean get(
int
i) {
71
return
(bits[i / 32] & (1 << (i & 0x1F))) != 0;
72
}
73
74
/**
75
* Sets bit i.
Callers
15
testGetRow
Method · 0.95
testGetSet
Method · 0.95
testGetNextSet5
Method · 0.95
testSetBulk
Method · 0.95
testSetRange
Method · 0.95
testClear
Method · 0.95
testFlip
Method · 0.95
testClone
Method · 0.95
testAt
Method · 0.95
toBytes
Method · 0.95
toString
Method · 0.95
embedTypeInfo
Method · 0.95
Calls
no outgoing calls
Tested by
15
testGetRow
Method · 0.76
testGetSet
Method · 0.76
testGetNextSet5
Method · 0.76
testSetBulk
Method · 0.76
testSetRange
Method · 0.76
testClear
Method · 0.76
testFlip
Method · 0.76
testClone
Method · 0.76
testAt
Method · 0.76
testDecodingRowByRow
Method · 0.36
testBlackBox
Method · 0.36
matrixToString
Method · 0.36