List of usage examples for org.apache.lucene.util BitUtil pop_array
public static long pop_array(long[] arr, int wordOffset, int numWords)
From source file:org.elasticsearch.common.lucene.docset.SlicedOpenBitSet.java
License:Apache License
/** * @return the number of set bits */ public long cardinality() { return BitUtil.pop_array(bits, from, wlen); }