Package org.jruby

Class RubyArray<T extends IRubyObject>

All Implemented Interfaces:
Serializable, Cloneable, Comparable<IRubyObject>, Iterable, Collection, List, RandomAccess, InstanceVariables, InternalVariables, IRubyObject, CoreObjectType
Direct Known Subclasses:
RubyArraySpecialized, StringArraySet

public class RubyArray<T extends IRubyObject> extends RubyObject implements List, RandomAccess
The implementation of the built-in class Array in Ruby. Concurrency: no synchronization is required among readers, but all users must synchronize externally with writers.
See Also: