moodymudskipper / tags

A collection of tags built using the package tag
GNU General Public License v3.0
8 stars 0 forks source link

A tag to name arguments automatically #11

Closed moodymudskipper closed 5 years ago

moodymudskipper commented 5 years ago

instead of writing fun(arg1 = arg1, arg2 = arg2) :

naming_args$fun(arg1, arg2)

useful when forwarding arguments to ..., and will avoid bugs when programming and adding arguments or changing parameter order.

can have arguments to make explicit only named arguments or args that falls in the dots : by default : named = TRUE and dots = TRUE

moodymudskipper commented 5 years ago

Just naming

moodymudskipper commented 5 years ago

done (simple version)