is_positive_decimal.Rd
Test if is a positive decimal
is_positive_decimal(x)
an R object
is_positive_decimal(0.0001)
#> [1] TRUE
is_positive_decimal(-0.0003)
#> [1] FALSE
is_positive_decimal(0)
#> [1] FALSE
is_positive_decimal(pi)
#> [1] FALSE
is_positive_decimal(-exp(1))
#> [1] FALSE