bitc
bitc is a collection of containers for bits (boolean values).
The library consists in two classes: BitArray and BitMatrix. More about them can be found in the docs.
Installation
1. Use the Jitpack Maven repository
Maven:
<repositories>
   <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
   </repository>
</repositories>Content copied to clipboard
Gradle (Kotlin):
 repositories {
     maven {
         url = uri("https://jitpack.io")
     }
 }Content copied to clipboard
2. Add the dependency
Maven:
 <dependency>
     <groupId>com.github.simonorono</groupId>
     <artifactId>bitc</artifactId>
     <version>1.2.0</version>
 </dependency>Content copied to clipboard
Gradle (Kotlin):
 dependencies {
     implementation("com.github.simonorono:bitc:1.2.0")
 }Content copied to clipboard