Modifier and Type | Class and Description |
---|---|
public static record | ImmutableBitSetPredicate.
Specialization for small sets of 128 bits or less |
Modifier and Type | Field and Description |
---|---|
private final long[] |
Access | Constructor and Description |
---|---|
private |
Modifier and Type | Method and Description |
---|---|
public static IntPredicate | Returns: a newIntPredicate representing the BitSet#get(int) method applied
on an immutable snapshot of the current state of this BitSetReturns a new |
public boolean | Returns: true if the bit is in the range of the BitSet and the bit is set, otherwise falsethe bit index to test bitIndex)Implements java. Evaluates this predicate on the given argument. |
words | back to summary |
---|---|
private final long[] words
|
ImmutableBitSetPredicate | back to summary |
---|---|
private ImmutableBitSetPredicate(BitSet original) |
of | back to summary |
---|---|
public static IntPredicate of(BitSet original) Returns a new
If the returned predicate is invoked with a Returned predicates are threadsafe and can be used without external synchronisation. Implementation Note The method is free to return a
|
test | back to summary |
---|---|
public boolean test(int bitIndex) Implements java. Doc from java. Evaluates this predicate on the given argument.
|
Modifier and Type | Field and Description |
---|---|
private final long | |
private final long |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
public final boolean | equals(Object
the reference object with which to compare. o)Implements abstract java. Indicates whether some other object is "equal to" this one. |
public long | |
public final int | |
public long | |
public boolean | Returns: true if the bit is in the range of the BitSet and the bit is set, otherwise falsethe bit index to test bitIndex)Implements java. Evaluates this predicate on the given argument. |
public final String | toString()
Implements abstract java. Returns a string representation of the record. |
first | back to summary |
---|---|
private final long first Record Component accessed by first(). - bits index 0 through 63, inclusive |
second | back to summary |
---|---|
private final long second Record Component accessed by second(). - bits index 64 through 127, inclusive |
SmallImmutableBitSetPredicate | back to summary |
---|---|
public SmallImmutableBitSetPredicate(long first, long second) |
equals | back to summary |
---|---|
public final boolean equals(Object o) Implements abstract java. Doc from java. Indicates whether some other object is "equal to" this one. In addition
to the general contract of R copy = new R(r.c1(), r.c2(), ..., r.cn());then it must be the case that r.equals(copy) .
|
first | back to summary |
---|---|
public long first() Record Component getter of first.
|
hashCode | back to summary |
---|---|
public final int hashCode() Implements abstract java. Doc from java. Returns a hash code value for the record.
Obeys the general contract of
|
second | back to summary |
---|---|
public long second() Record Component getter of second.
|
test | back to summary |
---|---|
public boolean test(int bitIndex) Implements java. Doc from java. Evaluates this predicate on the given argument.
|
toString | back to summary |
---|---|
public final String toString() Implements abstract java. Doc from java. Returns a string representation of the record.
In accordance with the general contract of In addition to this general contract, record classes must further participate in the invariant that any two records which are equal must produce equal strings. This invariant is necessarily relaxed in the rare case where corresponding equal component values might fail to produce equal strings for themselves.
|