matchArguments

matches argument types with defined argument types. Used by ASTGen and compiler.d.

* void will match true against all types (arrays, and even references) * @void will match true against only references of any type * @void[] will match true against only references of any type of array * void[] will match true against only any type of array (even references)

bool
matchArguments

Return Value

Type: bool

true if match successful, else, false

Meta