- Non-finite inputs (
NA
,Inf
, andNaN
) no longer produce an error.Inf
is handled like a normal number.nom_card(Inf)
produces"infinity"
andnom_ord(Inf)
produces"infinitieth"
.NA
andNaN
propagate through functions. All functions returnNA
forNA
and"NaN"
forNaN
.
- The logic in
ordinal()
has been simplified and now runs slightly faster.