Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function StopTimer: Double; | Stops the timer with microsecond resolution. |
| 2 | function StopTimer(const timervar: Int64): Double; | Stops the microsecond timer. |
Overload 1: function StopTimer: Double;
Stops the timer with microsecond resolution.
Returns: Double
Remarks:
Call this procedure to stop measuring time. To begin call Math387.StartTimer. The result returned is time in seconds since the StartTimer routine was called.
Overload 2: function StopTimer(const timervar: Int64): Double;
Stops the microsecond timer.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | timervar | Int64 |
Returns: Double
Remarks:
Call this procedure to stop measuring time. To begin call Math387.StartTimer. The timervar must be the same as passed to the Math387.StartTimer routine. The result returned is time in seconds since the StartTimer routine was called.