Skip to main content

=

Symbol of Object.

Overloads

NameDescription
(Object lhs = Object rhs) -> ObjectAssigns a value to an undefined variable.
(Object lhs = const Function rhs) -> ObjectAssigns a const function pointer to another function pointer.
(Object lhs = Function rhs) -> ObjectAssigns 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.