This might seem silly, but how do you overload an operator, so that when used, it may increment or decrement to the next node of a linked list.
i.e. MyList++; would change to nextPTR of the current Struct, while MyList--; would change to the prevPTR of the current Struct.
i.e. MyList++; would change to nextPTR of the current Struct, while MyList--; would change to the prevPTR of the current Struct.