Determines if the argument is a whole number
Examples
check_empty_beautier_folder()
# TRUE
is_one_int(314)
#> [1] TRUE
is_one_int(0)
#> [1] TRUE
is_one_int(-314)
#> [1] TRUE
# FALSE
is_one_int(3.14)
#> [1] FALSE
is_one_int(NULL)
#> [1] FALSE
is_one_int(NA)
#> [1] FALSE
is_one_int(Inf)
#> [1] FALSE
is_one_int("nonsense")
#> [1] FALSE
is_one_int(c())
#> [1] FALSE
is_one_int(c(1, 2))
#> [1] FALSE
check_empty_beautier_folder()