在 elisp 中将 nil 更改为零
我想问 - 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
x
为零,则表达式(or x 0)
的计算结果为0,否则为x
。The expression
(or x 0)
will evaluate to 0 ifx
is nil, andx
otherwise.