Package | Description |
---|---|
net.sf.rubycollect4j |
Modifier and Type | Method and Description |
---|---|
boolean |
RubyHash.allʔ(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
boolean |
RubyHash.anyʔ(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
int |
RubyHash.count(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyHash<K,V> |
RubyHash.deleteIf(EntryBooleanBlock<? super K,? super V> block)
Deletes entries which the result are true returned by the block.
|
java.util.Map.Entry<K,V> |
RubyHash.detect(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyArray<java.util.Map.Entry<K,V>> |
RubyHash.dropWhile(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
java.util.Map.Entry<K,V> |
RubyHash.find(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyArray<java.util.Map.Entry<K,V>> |
RubyHash.findAll(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
java.lang.Integer |
RubyHash.findIndex(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyHash<K,V> |
RubyHash.keepIf(EntryBooleanBlock<? super K,? super V> block)
Keeps elements which the result are true returned by the block.
|
boolean |
RubyHash.noneʔ(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
boolean |
RubyHash.oneʔ(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyArray<RubyArray<java.util.Map.Entry<K,V>>> |
RubyHash.partition(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyArray<java.util.Map.Entry<K,V>> |
RubyHash.reject(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyHash<K,V> |
RubyHash.rejectǃ(EntryBooleanBlock<? super K,? super V> block)
Deletes entries which are true returned by the block.
|
RubyArray<java.util.Map.Entry<K,V>> |
RubyHash.select(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyEnumerator<RubyArray<java.util.Map.Entry<K,V>>> |
RubyHash.sliceBefore(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|
RubyArray<java.util.Map.Entry<K,V>> |
RubyHash.takeWhile(EntryBooleanBlock<? super K,? super V> block)
An adapter method.
|