=
Symbol of Object.
Overloads
| Name | Description |
|---|---|
(Object lhs = Object rhs) -> Object | Assigns a value to an undefined variable. |
(Object lhs = const Function rhs) -> Object | Assigns a const function pointer to another function pointer. |
(Object lhs = Function rhs) -> Object | Assigns a function pointer to another function pointer. |
(Object lhs = Object rhs) -> Object
Assigns a value to an undefined variable.
Parameters
- lhs: Left-hand side value.
- rhs: The value to assign.
(Object lhs = const Function rhs) -> Object
Assigns a const function pointer to another function pointer.
Parameters
- lhs: Left-hand side value.
- rhs: The right-hand side const function pointer.
(Object lhs = Function rhs) -> Object
Assigns a function pointer to another function pointer.
Parameters
- lhs: Left-hand side value.
- rhs: The right-hand side function pointer.