In R, one does ?plot in order to get help for the plot.
Is there a way to get help in command line for the internal structures of the language, for example, about variable function arguments ‘…’, different type of array access [] or [[]], $, etc ?
> help("...")
No documentation for ‘...’ in specified packages and libraries:
you could try ‘??...’
For indexing functions, you can use :
This works because
[, for example, is in fact a function by itself, as you can see if you do :Whereas
...is not a function, sohelp("...")won’t work.