This function returns TRUE for highlighted vectors (class vlightr_highlight)
or subclasses thereof, and returns returns FALSE otherwise.
Examples
# The following are `FALSE`
is_highlight(10)
#> [1] FALSE
# The following are `TRUE`
is_highlight(highlight(10))
#> [1] TRUE
is_highlight(templight(10))
#> [1] TRUE
is_highlight(highlight_case(10))
#> [1] TRUE