If you want a member function to work on a specific class object,
then instantiate the following pattern:
class object.member function (ordinary arguments)
If you want to call a member function
from inside another member function,
and the called member function is to work on the same
object that you handed to the calling function,
then drop the class object argument and the class-member operator,
instantiating the following pattern: