为什么 `:=` 用作中缀运算符?

发布于 2024-12-04 08:11:17 字数 163 浏览 0 评论 0原文

为什么以下内容在 R 中有效?

> `:=` <- function(x, y) x + y
> 1 := 2
[1] 3

我的理解是用户定义的中缀运算符需要 % 。还有其他(可能更容易输入)选项吗?

Why does the following work in R?

> `:=` <- function(x, y) x + y
> 1 := 2
[1] 3

My understanding was that % was required for user-defined infix operators. Are there other (possibly easier to type) options available?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆追雨的时光 2024-12-11 08:11:17

这是因为 :=<-<<- 一样,定义为 LEFT_ASSIGN R 的解析器。
请参阅http://svn.r-project.org/R/trunk/src/main /gram.y

这意味着 := 是一种特殊情况,您也可能不希望有任何其他选项可用。

This is because := is, like <- or <<-, defined as LEFT_ASSIGN for the parser of R.
See http://svn.r-project.org/R/trunk/src/main/gram.y

This means that := is a special case and you may as well not expect that any other options are available.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文