Search notes:

R function: objects

objects shows the variables and functions that are defined in a workspace (or environment(?)).
#
#   See also  -> ls(), search()
#
var_1 <- 42
var_2 <- sqrt(var_1)
var_3 <- var_2 * var_2

objects()
# [1] "var_1" "var_2" "var_3"


objects('package:base')
#
#  Compare with apropos()
#
Github repository about-r, path: /functions/objects.R
The functions objects and ls are identical.

See also

R Objects
Index to (some) R functions

Index