contents   index   previous   next



seIsArray

 

syntax:

   sebool

seIsArray(secontext se,seobject object,

                       semember member,

                       sememcount *length);

where:

se the context the object belongs to

 

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