在 elisp 中将 nil 更改为零

发布于 2024-09-03 02:31:21 字数 220 浏览 3 评论 0原文

我想问 - elisp 中将 nil 从 nil 转换为 0 的函数是什么?

我是一个新手,我认为我正在用我的代码发明轮子:

(defun chgnull (x)
  (if (null x) 0 1))
(mapcar 'chgnull '(1 2 nil))

通过关键字“to Zero”搜索 Emacs 源代码,但没有显示任何相关内容。

I'd like to ask - what is the function doing nil conversion from nil's to zeroes in elisp?

I'm a newbie and I think I am inventing the wheel with my code:

(defun chgnull (x)
  (if (null x) 0 1))
(mapcar 'chgnull '(1 2 nil))

Search through Emacs sources by keyword "to zero" and such haven't shown anything relevant.

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

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

发布评论

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

评论(1

不即不离 2024-09-10 02:31:21

如果x 为零,则表达式(or x 0) 的计算结果为0,否则为x

The expression (or x 0) will evaluate to 0 if x is nil, and x otherwise.

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