hms_ {quickcheck} | R Documentation |
hms generators
Description
A set of generators for hms vectors.
Usage
hms_(len = c(1L, 10L), any_na = FALSE)
hms_bounded(left, right, len = c(1L, 10L), any_na = FALSE)
hms_left_bounded(left, len = c(1L, 10L), any_na = FALSE)
hms_right_bounded(right, len = c(1L, 10L), any_na = FALSE)
Arguments
len |
Length of the generated vectors. If |
any_na |
Whether |
left |
The minimum possible value for generated numbers, inclusive. |
right |
The maximum possible value for generated numbers, inclusive. |
Value
A quickcheck_generator
object.
Examples
hms_() %>% show_example()
hms_bounded(
left = hms::as_hms("00:00:00"),
right = hms::as_hms("12:00:00")
) %>% show_example()
hms_(len = 10L, any_na = TRUE) %>% show_example()
[Package quickcheck version 0.1.3 Index]