You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,20 @@ PHP BitArray
11
11
12
12
BitArray for PHP.
13
13
14
+
This project manipulates compact array of bit values stored internally as strings.
15
+
16
+
The bit arrays may have variable length specified when an object is created using either:
17
+
18
+
* a specific size;
19
+
* a traversable collection;
20
+
* a string representation of bits;
21
+
* a json representation of bits;
22
+
* a slice from another bit array;
23
+
* a concatenation from two others bit arrays.
24
+
25
+
The project provides methods to get and set bits values using PHP natural syntax as well as the iterator facility offered by PHP foreach language construct.
26
+
It also provides methods for bitwise logical operations between two bit arrays `and`, `or`, `xor` and also `not` operation.
27
+
14
28
This project uses:
15
29
16
30
*[PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer) for checking PHP code style using [Joomla Coding Standards](https://github.com/joomla/coding-standards)
0 commit comments