Return an in increaing whole-number sequence from a to b inclusive (return integer(0) if none such). Allows for safe iteraton.
seqi(a, b)
Arguments
a |
scalar lower bound |
b |
scalar upper bound |
Value
whole number sequence
Examples
#> [1] 3
#> [1] 4
#> [1] 5