Hi, I saw this in someone's code:
public function parseResult( result:*):Array {
if( result is XML || result is XMLList ) {
. . . .
...
what is the '*' , is this the same as (result:object) ?
where result can be any type of object?

