Home  Contents

time:addSecs

Date/Time Core4 Lua Commands

SYNOPSIS

  1. time:addSecs(n)
  2. time:addMSecs(n)

DESCRIPTION

Adds the specified number of seconds or milliseconds, respectively, to the value stored in time.

By adding time, the hours value of a time object can go beyond 23, to allow it's use for measuring larger time intervals.

You can subtract time by using negative values. If the resulting time after subtraction is negative, the time object becomes invalid.

ERRORS

Raises an error if time is not a time instance.

EXAMPLE

>  >  > 
t = clock.newTime(10, 0, 0) t:addSecs(300) print(t)
10:05:00

SEE ALSO