Uses of Class
org.jruby.RubyArray

Packages that use RubyArray
org.jruby   
org.jruby.evaluator   
org.jruby.exceptions   
org.jruby.javasupport   
org.jruby.runtime   
org.jruby.util   
 

Uses of RubyArray in org.jruby
 

Methods in org.jruby that return RubyArray
 RubyArray Builtins.newArray()
           
 RubyArray Builtins.toArray(IRubyObject value)
          Converts a RubyObject into a RubyArray.
static RubyArray KernelModule.readlines(IRubyObject recv, IRubyObject[] args)
           
static RubyArray KernelModule.global_variables(IRubyObject recv)
          Returns an Array with the names of all global variables.
static RubyArray KernelModule.local_variables(IRubyObject recv)
          Returns an Array with the names of all local variables.
static RubyArray RubyArray.nilArray(Ruby ruby)
           
 RubyArray RubyArray.unshift(IRubyObject item)
          rb_ary_unshift
static RubyArray RubyArray.arrayValue(IRubyObject other)
          to_ary
static RubyArray RubyArray.newArray(Ruby ruby, long len)
          rb_ary_new2
static RubyArray RubyArray.newArray(Ruby ruby)
          rb_ary_new
static RubyArray RubyArray.newArray(Ruby ruby, IRubyObject obj)
           
static RubyArray RubyArray.newArray(Ruby ruby, IRubyObject car, IRubyObject cdr)
          rb_assoc_new
static RubyArray RubyArray.newArray(Ruby ruby, java.util.ArrayList list)
           
static RubyArray RubyArray.newArray(Ruby ruby, IRubyObject[] args)
           
static RubyArray RubyArray.newInstance(IRubyObject recv, IRubyObject[] args)
          rb_ary_s_new
static RubyArray RubyArray.create(IRubyObject recv, IRubyObject[] args)
          rb_ary_s_create
 RubyArray RubyArray.push(IRubyObject[] items)
          rb_ary_push_m
 RubyArray RubyArray.append(IRubyObject value)
           
 RubyArray RubyArray.unshift(IRubyObject[] items)
          rb_ary_unshift_m
 RubyArray RubyArray.concat(IRubyObject obj)
          rb_ary_concat
 RubyArray RubyArray.to_a()
          rb_ary_to_a
 RubyArray RubyArray.indices(IRubyObject[] args)
           
 RubyArray RubyArray.reverse_bang()
          rb_ary_reverse_bang
 RubyArray RubyArray.collect()
          rb_ary_collect
 RubyArray RubyArray.collect_bang()
          rb_ary_collect_bang
 RubyArray RubyArray.sort()
          rb_ary_sort
static RubyArray RubyArray.unmarshalFrom(UnmarshalStream input)
           
static RubyArray RubyDir.glob(IRubyObject recv, RubyString pat)
          Returns an array of filenames matching the specified wildcard pattern pat.
static RubyArray RubyDir.entries(IRubyObject recv, RubyString path)
          Returns an array containing all of the filenames in the given directory.
 RubyArray RubyException.backtrace()
           
 RubyArray RubyException.set_backtrace(IRubyObject obj)
           
 RubyArray RubyFloat.coerce(RubyNumeric other)
           
 RubyArray RubyHash.to_a()
           
 RubyArray RubyHash.sort()
           
 RubyArray RubyHash.indices(IRubyObject[] indices)
           
 RubyArray RubyHash.keys()
           
 RubyArray RubyHash.values()
           
 RubyArray RubyHash.shift()
           
 RubyArray RubyHash.values_at(IRubyObject[] argv)
           
 RubyArray RubyIO.readlines(IRubyObject[] args)
           
static RubyArray RubyIO.readlines(IRubyObject recv, IRubyObject[] args)
           
 RubyArray RubyMatchData.subseq(long beg, long len)
           
 RubyArray RubyMatchData.to_a()
          match_to_a
static RubyArray RubyMath.frexp(IRubyObject recv, RubyNumeric other)
           
 RubyArray RubyModule.class_variables()
          rb_mod_class_variables
 RubyArray RubyModule.included_modules()
          rb_mod_included_modules
 RubyArray RubyModule.ancestors()
          rb_mod_ancestors
static RubyArray RubyModule.nesting(IRubyObject recv)
          Return an array of nested modules or classes.
 RubyArray RubyModule.instance_methods(IRubyObject[] args)
          rb_class_instance_methods
 RubyArray RubyModule.protected_instance_methods(IRubyObject[] args)
          rb_class_protected_instance_methods
 RubyArray RubyModule.private_instance_methods(IRubyObject[] args)
          rb_class_private_instance_methods
 RubyArray RubyModule.constants()
          rb_mod_constants
static RubyArray RubyNil.to_a(IRubyObject recv)
          nil_to_a
 RubyArray RubyNumeric.coerce(RubyNumeric other)
          num_coerce
 RubyArray RubyNumeric.divmod(RubyNumeric other)
          num_divmod
 RubyArray RubyObject.instance_variables()
           
 RubyArray RubyObject.singleton_methods()
          rb_obj_singleton_methods
 RubyArray RubyObject.to_a()
           
 RubyArray RubyString.split(IRubyObject[] args)
          rb_str_split
 RubyArray RubyString.unpack(IRubyObject obj)
           
static RubyArray RubyStruct.members(IRubyObject recv)
           
 RubyArray RubyStruct.members()
           
 RubyArray RubyStruct.to_a()
           
 RubyArray RubyTime.to_a()
           
static RubyArray ThreadClass.list(IRubyObject recv)
           
 

Uses of RubyArray in org.jruby.evaluator
 

Methods in org.jruby.evaluator that return RubyArray
 RubyArray ValueConverter.singleToArray(IRubyObject value)
           
 RubyArray ValueConverter.singleToMultiple(IRubyObject value)
           
 

Uses of RubyArray in org.jruby.exceptions
 

Methods in org.jruby.exceptions that return RubyArray
static RubyArray RaiseException.createBacktrace(Ruby ruby, int level)
          Create an Array with backtrace information.
 

Uses of RubyArray in org.jruby.javasupport
 

Methods in org.jruby.javasupport that return RubyArray
 RubyArray JavaCallable.argument_types()
           
 RubyArray JavaClass.java_instance_methods()
           
 RubyArray JavaClass.java_class_methods()
           
 RubyArray JavaClass.constructors()
           
 RubyArray JavaClass.fields()
           
 RubyArray JavaClass.interfaces()
           
 

Methods in org.jruby.javasupport with parameters of type RubyArray
 java.lang.Object RubyConversion.convertRubyArrayToJava(RubyArray array, java.lang.Class type)
           
 

Uses of RubyArray in org.jruby.runtime
 

Methods in org.jruby.runtime that return RubyArray
 RubyArray ThreadContext.moduleNesting()
           
 

Uses of RubyArray in org.jruby.util
 

Methods in org.jruby.util that return RubyArray
static RubyArray Pack.unpack(java.lang.String encodedString, RubyString formatString)
          Decodes str (which may contain binary data) according to the format string, returning an array of each value extracted.
 RubyArray Split.results()
           
 

Methods in org.jruby.util with parameters of type RubyArray
static void Pack.decode(Ruby ruby, org.jruby.util.Pack.PtrList encode, int occurrences, RubyArray result, Pack.Converter converter)
           
 



Copyright © 2002 Jan Arne Petersen. All Rights Reserved.