Interface CellExtractor.CellPredicate
- Enclosing interface:
- CellExtractor
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents an operation that accepts an 
<index, count> pair.
 Returns true if processing should continue, false otherwise.
 Note: This is a functional interface as a specialization of
 BiPredicate for int.
- Since:
- 4.5.0-M2
- 
Method SummaryModifier and TypeMethodDescriptionbooleantest(int index, int count) Performs an operation on the given<index, count>pair.
- 
Method Details- 
testPerforms an operation on the given<index, count>pair.- Parameters:
- index- the bit index.
- count- the cell value at the specified bit index.
- Returns:
- trueif processing should continue,- falseif processing should stop.
 
 
-