What can I use instead of the arrow operator, `->`?

The following two expressions are equivalent:

a->b

(*a).b

(subject to operator overloading, as Konrad mentions, but that’s unusual).

Leave a Comment