contents   index   previous   next



seIsArray

 

syntax:

   boolean

SEContext.seIsArray(SEObject object,

                    SEMemberDesc member,

                    int[] length);

where:

object the object half of an Object,Member pair.

 

member the member half of an Object,Member pair.

 

length an output parameter filled in with one more than the highest numbered element, 0 if no numbered element.

 

return:

The boolean true if the object is an ECMA Array. Note that objects that are not true Arrays can still have numbered elements. Thus, the length parameter will be filled in for all objects, though it will usually be 0.

 

description:

Determine if an object is an ECMA Array.

 

see:

seIsFunction, seSetArray

 


seSetArray