gitextract_l8on2fz7/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── RcppExports.R │ ├── active.r │ ├── assign-active.r │ ├── assign-constant.r │ ├── assign-delayed.r │ ├── bytes.r │ ├── compose.r │ ├── dots.r │ ├── draw-tree.r │ ├── enclosing.R │ ├── explicit-promise.R │ ├── f.r │ ├── fget.r │ ├── find-funs.r │ ├── find_uses.R │ ├── ftype.r │ ├── inspect.r │ ├── make-call.R │ ├── make-function.r │ ├── mem.R │ ├── method-from-call.r │ ├── modify-call.R │ ├── modify-lang.r │ ├── names_c.R │ ├── object_size.R │ ├── otype.r │ ├── parenv.r │ ├── partial.r │ ├── promise.r │ ├── rebind.r │ ├── rls.r │ ├── s3.r │ ├── standardise-call.r │ ├── substitute.r │ ├── unenclose.r │ ├── uneval.r │ ├── utils.r │ └── where.r ├── README.md ├── benchmark/ │ └── make-function.r ├── cran-comments.md ├── man/ │ ├── as.envlist.Rd │ ├── assign-active.Rd │ ├── assign-constant.Rd │ ├── assign-delayed.Rd │ ├── bytes.Rd │ ├── call_tree.Rd │ ├── compose.Rd │ ├── dots.Rd │ ├── enclosing_env.Rd │ ├── explicit.Rd │ ├── f.Rd │ ├── fget.Rd │ ├── find_funs.Rd │ ├── find_uses.Rd │ ├── ftype.Rd │ ├── inspect.Rd │ ├── is_active_binding.Rd │ ├── is_promise.Rd │ ├── is_s3_generic.Rd │ ├── make_call.Rd │ ├── make_function.Rd │ ├── mem_change.Rd │ ├── mem_used.Rd │ ├── method_from_call.Rd │ ├── modify_call.Rd │ ├── modify_lang.Rd │ ├── names_c.Rd │ ├── object_size.Rd │ ├── otype.Rd │ ├── parent_promise.Rd │ ├── parenv.Rd │ ├── parenvs.Rd │ ├── partial.Rd │ ├── print.envlist.Rd │ ├── rebind.Rd │ ├── rls.Rd │ ├── show_c_source.Rd │ ├── standardise_call.Rd │ ├── subs.Rd │ ├── substitute_q.Rd │ ├── track_copy.Rd │ ├── unenclose.Rd │ ├── uneval.Rd │ └── where.Rd ├── pryr.Rproj ├── src/ │ ├── .gitignore │ ├── RcppExports.cpp │ ├── bytes.cpp │ ├── inspect.cpp │ ├── promise.cpp │ ├── slice.cpp │ └── typename.cpp └── tests/ ├── testthat/ │ ├── helper-object_size.R │ ├── test-active-binding.r │ ├── test-bytes.r │ ├── test-ftype.r │ ├── test-method-from-call.r │ ├── test-object_size.R │ └── test-track-copy.R └── testthat.R