toMinutes method

int toMinutes()

Returns the total minutes in the time

Implementation

int toMinutes()
{
  return seconds ~/ secondsPerMinute;
}