Package | Description |
---|---|
net.sf.rubycollect4j |
Modifier and Type | Interface and Description |
---|---|
static interface |
Ruby.Enumerator<E>
Ruby.Enumerator includes all methods refer to the Enumerator class
of Ruby. |
Modifier and Type | Class and Description |
---|---|
class |
RubyArray<E>
RubyArray implements all methods refer to the Array class of Ruby
language. |
class |
RubyDir
RubyDir implements parts of the methods refer to the Dir class of
Ruby. |
class |
RubyEnumerable<E>
RubyEnumerable is an extension for any Iterable class. |
class |
RubyEnumerator<E>
RubyEnumerator implements most of the methods refer to the Enumerator
class of Ruby language. |
class |
RubyHash<K,V>
RubyHash implements all methods refer to the Hash class of Ruby
language. |
class |
RubyRange<E>
RubyRange is inspired by the Range class of Ruby. |
class |
RubySet<E>
RubySet implements all methods refer to the Set class of Ruby
language. |
class |
RubyString
RubyString implements all methods refer to the String class of Ruby
language. |
Modifier and Type | Method and Description |
---|---|
Ruby.Enumerable<E> |
Ruby.Enumerable.each(Block<? super E> block)
Yields each element to the block.
|
Ruby.Enumerable<E> |
Ruby.Enumerable.eachEntry(Block<? super E> block)
Yields each element to the block.
|
Ruby.Enumerable<E> |
Ruby.Enumerable.eachWithIndex(WithIndexBlock<? super E> block)
Iterates elements with their indices and yields them to the block.
|
Ruby.Enumerable<E> |
Ruby.Enumerable.reverseEach(Block<? super E> block)
Iterates each element reversely by given block.
|