Package com.xiaoleilu.hutool.bloomFilter.bitMap

Examples of com.xiaoleilu.hutool.bloomFilter.bitMap.IntMap


  public AbstractFilter(long maxValue, int machineNum) {
    this.size = maxValue;
   
    switch (machineNum) {
      case BitMap.MACHINE32:
        bm = new IntMap((int) (size / machineNum));
        break;
      case BitMap.MACHINE64:
        bm = new LongMap((int) (size / machineNum));
        break;
      default:
View Full Code Here

TOP

Related Classes of com.xiaoleilu.hutool.bloomFilter.bitMap.IntMap

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.