Hello. I have a question about the member access operator ->
I am trying to understand a code of this format: A->B->C->D.
Does it means A->(B->(C->D)) or ((A->B)->C)->D)?
In the former case, I shall try to understand the code which is represented by (C->D) first.
Thanks.