Arguments - baso88/SC_AngelScript GitHub Wiki
This class can hold arguments for a function or method call.
Namespace: Reflection
The HTML documentation can be found here.
Constructors
| Constructor | Description |
|---|---|
| Arguments() | Default constructor |
| Arguments(const Arguments& in other) | Copy constructor |
| Arguments(...) | Constructs a Arguments instance with the given arguments. Supports a variable number of arguments. |
Methods
| Method | Description |
|---|---|
| Arguments& opAssign(const Arguments& in other) | Assignment operator |
| size_t GetCount() const | Get number of arguments |
| bool HasArguments() const | Returns whether this instance holds any arguments. |
| void Clear() | Clears this instance's data. |
| bool SetArguments(...) | Sets the arguments this instance contains. Supports a variable number of arguments. |