Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 330 Bytes

hexmode.md

File metadata and controls

13 lines (12 loc) · 330 Bytes
x <- as.hexmode(8:16)
x + 1
#> [1] "09" "0a" "0b" "0c" "0d" "0e" "0f" "10" "11"
x[NA_integer_]
#> [1] NA
as.hexmode(NA)
#> Error in as.hexmode(NA): 'x' cannot be coerced to class "hexmode"
as.hexmode(NA_integer_)
#> [1] NA

Created on 2021-04-06 by the reprex package (v1.0.0)