| Function | Defined by | ||
|---|---|---|---|
|
isPrimitive(instance:*):Boolean
Checks to see if the class of
instance is a primitive which will be referenced by value
rather than by pointer. | org.as3lib.utils | ||
| isPrimitive | () | function |
public function isPrimitive(instance:*):Boolean
Checks to see if the class of instance is a primitive which will be referenced by value
rather than by pointer.
The primitive types checked for are :
Number
int
uint
String
Boolean
instance:* — - the object whos class you want to check.
|
Boolean — true if instance is is a primitive value.
|