We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fff468 commit 64b5463Copy full SHA for 64b5463
src/Bitmap.php
@@ -13,6 +13,6 @@ public function __construct($bitmap = 0)
13
14
public function isSet($index)
15
{
16
- return $this->_bitmap & (1 << $index);
+ return 0 !== $this->_bitmap & (1 << $index);
17
}
18
0 commit comments