Tests if an object is a single positive decimal

is_single_negative_decimal(x)

Arguments

x

an R object

Examples

is_single_negative_decimal(-3/4)  # TRUE
#> [1] TRUE
is_single_negative_decimal(0.01)  # FALSE
#> [1] FALSE
is_single_negative_decimal("hoskdflksfd")  # FALSE
#> [1] FALSE
is_single_negative_decimal("1.0")  # FALSE
#> [1] FALSE
is_single_negative_decimal(1:5)  # FALSE
#> [1] FALSE