Skip to contents

Used with tictoc::tic(), overrides tictoc::toc() by returning the numeric elapsed time since the last tictoc::tic() call, in the specified unit.

Usage

get_values_tic_msg(unit = "sec")

Arguments

unit

A string specifying the unit of time for the returned value (the default is 'sec'). Possible values: 'sec' (seconds), 'min' (minutes) or 'hour' (hours).

Value

A numeric value representing the elapsed time in the specified unit.

Examples

# Extract elapsed time in seconds
get_values_tic_msg(unit = 'sec')
#> numeric(0)

# Extract elapsed time in minutes
get_values_tic_msg(unit = 'min')
#> numeric(0)

# Extract elapsed time in hours
get_values_tic_msg(unit = 'hour')
#> numeric(0)