I'm searching this for a while and I can't find the answer. Is there some function which gives name of the vector ? It's very important to me to have such. Like in the example following.
 long_name<-c(1,2,3)
    vec_name<-function(vec){} 
    vec_name(long_name) 
    long_name
 
     
    