tmr_is_stopped {hmstimer} | R Documentation |
Is hms Timer Stopped
Description
Tests if a hms_timer()
is stopped (as indicated by the
absence of an attribute named start).
Usage
tmr_is_stopped(x)
Arguments
x |
A |
Value
A flag.
See Also
Other start_stop:
tmr_elapsed()
,
tmr_is_started()
,
tmr_print()
,
tmr_reset()
,
tmr_start()
,
tmr_stop()
,
tmr_timer()
Examples
tmr <- tmr_timer(start = TRUE)
print(tmr_is_stopped(tmr))
tmr <- tmr_stop(tmr)
print(tmr_is_stopped(tmr))
[Package hmstimer version 0.2.1 Index]