gpt4 book ai didi

emacs - 如何在Emacs Lisp中求和数字列表?

转载 作者:行者123 更新时间:2023-12-03 09:17:01 26 4
gpt4 key购买 nike

这有效:

(+ 1 2 3)
6

这不起作用:
(+ '(1 2 3))

如果加载了 cl-*,这将起作用:
(reduce '+ '(1 2 3))
6

如果 reduce始终可用,我可以写:
(defun sum (L)
(reduce '+ L))

(sum '(1 2 3))
6

定义诸如 sum之类的功能的最佳实践是什么?

最佳答案

(apply '+ '(1 2 3))

关于emacs - 如何在Emacs Lisp中求和数字列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/590579/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com