Uses of Interface
com.googlecode.javaewah.IntIterator
-
Packages that use IntIterator Package Description com.googlecode.javaewah com.googlecode.javaewah.datastructure com.googlecode.javaewah32 -
-
Uses of IntIterator in com.googlecode.javaewah
Classes in com.googlecode.javaewah that implement IntIterator Modifier and Type Class Description (package private) classClearIntIteratorThis class is equivalent to IntIteratorImpl, except that it allows use to iterate over "clear" bits (bits set to 0).(package private) classIntIteratorImplThe IntIteratorImpl is the 64 bit implementation of the IntIterator interface, which efficiently returns the stream of integers represented by an EWAHIterator.classIntIteratorOverIteratingRLWImplementation of an IntIterator over an IteratingRLW.(package private) classReverseIntIteratorThe ReverseIntIterator is the 64 bit implementation of the IntIterator interface, which efficiently returns the stream of integers represented by a ReverseEWAHIterator in reverse order.Methods in com.googlecode.javaewah that return IntIterator Modifier and Type Method Description IntIteratorEWAHCompressedBitmap. clearIntIterator()Iterator over the clear bits.IntIteratorEWAHCompressedBitmap. intIterator()Iterator over the set bits (this is what most people will want to use to browse the content if they want an iterator).IntIteratorEWAHCompressedBitmap. reverseIntIterator()Iterator over the set bits in reverse order.static IntIteratorIteratorUtil. toSetBitsIntIterator(IteratingRLW i) -
Uses of IntIterator in com.googlecode.javaewah.datastructure
Methods in com.googlecode.javaewah.datastructure that return IntIterator Modifier and Type Method Description IntIteratorBitSet. intIterator()Iterate over the set bitsIntIteratorImmutableBitSet. intIterator()Iterate over the set bitsIntIteratorBitSet. unsetIntIterator()Iterate over the unset bitsIntIteratorImmutableBitSet. unsetIntIterator()Iterate over the unset bits -
Uses of IntIterator in com.googlecode.javaewah32
Classes in com.googlecode.javaewah32 that implement IntIterator Modifier and Type Class Description (package private) classClearIntIterator32This class is equivalent to IntIteratorImpl, except that it allows use to iterate over "clear" bits (bits set to 0).(package private) classIntIteratorImpl32The IntIteratorImpl32 is the 32 bit implementation of the IntIterator interface, which efficiently returns the stream of integers represented by an EWAHIterator32.classIntIteratorOverIteratingRLW32Implementation of an IntIterator over an IteratingRLW.(package private) classReverseIntIterator32The ReverseIntIterator32 is the 32 bit implementation of the IntIterator interface, which efficiently returns the stream of integers represented by a ReverseEWAHIterator32 in reverse order.Methods in com.googlecode.javaewah32 that return IntIterator Modifier and Type Method Description IntIteratorEWAHCompressedBitmap32. clearIntIterator()Iterator over the clear bits.IntIteratorEWAHCompressedBitmap32. intIterator()Iterator over the set bits (this is what most people will want to use to browse the content if they want an iterator).IntIteratorEWAHCompressedBitmap32. reverseIntIterator()Iterator over the set bits in reverse order.static IntIteratorIteratorUtil32. toSetBitsIntIterator(IteratingRLW32 i)
-