Arrow Operator = Dereference + Dot
One symbol replaces two operations.
The arrow operator `->` is a shortcut that does two things at once: it dereferences a pointer and then accesses a member.
↳ `ptr->member` is exactly the same as `(*ptr).member` — just cleaner to write and read.