All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.flybotix.hfr.codex.CodexHash Maven / Gradle / Ivy

Go to download

A way for wifi robots and IoT devices to quickly send compressed data arrays across a network.

There is a newer version: 2019.1.11
Show newest version
package com.flybotix.hfr.codex;

import java.util.BitSet;

public class CodexHash{
  BitSet bs = new BitSet();
  int nonNullCount = 0;
  
  public BitSet getBitSet() {
    return bs;
  }
  
  public int getNonNullCount() {
    return nonNullCount;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy