We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99d70f4 commit 8afb6e6Copy full SHA for 8afb6e6
README.md
@@ -22,13 +22,13 @@ This package includes [bit twiddling hacks] by Sean Eron Anderson and many other
22
import io.github.javaf.*;
23
24
Bit.count(7);
25
-// 3 (111 => 3)
+// 3 (111 ⇒ 3)
26
27
Bit.parity(8, 2);
28
-// 2 (10,00 => 10)
+// 2 (10,00 ⇒ 10)
29
30
Bit.swap(6, 1, 0);
31
-// 5 (110 => 101)
+// 5 (110 ⇒ 101)
32
33
Bit.reverse(0xFFFF0000);
34
// 65535 (0x0000FFFF)
pom.xml
@@ -5,7 +5,7 @@
5
<modelVersion>4.0.0</modelVersion>
6
<groupId>io.github.javaf</groupId>
7
<artifactId>extra-bit</artifactId>
8
- <version>1.0.4</version>
+ <version>1.0.5</version>
9
<packaging>jar</packaging>
10
11
<!-- Use JDK 11 -->
0 commit comments