Closed ErikSchierboom closed 1 month ago
It took me a while to work out why you need both unlist and as.vector. It really tries hard to hold on to the names otherwise.
unlist
as.vector
Use of unname instead of as.vector does the same thing, and may be a bit more clear in its intention?
unname
Fair point! i've updated
It took me a while to work out why you need both
unlist
andas.vector
. It really tries hard to hold on to the names otherwise.Use of
unname
instead ofas.vector
does the same thing, and may be a bit more clear in its intention?