在 R 中提取函数的输入

Extract input of a function in R

我想知道是否有办法提取 a 中使用的输入值 (1:3) 在 运行 对象 a 之后?

library(clubSandwich)

a <- constrain_equal(1:3)

Desired output: vector 1:3

看起来像

environment(a)$constraints

适用于您的示例(ls(environment(a)) 显示哪些对象可用)。