Creates a zero-copy ALTREP view of a Julia NamedArray vector, preserving the axis names.
Examples
if (FALSE) { # \dontrun{
JuliaCall::julia_setup()
JuliaCall::julia_command("using NamedArrays")
v <- JuliaCall::julia_eval('NamedArray([1.0, 2.0, 3.0], (["a", "b", "c"],))')
x <- jlview_named_vector(v)
names(x) # returns c("a", "b", "c")
} # }