gpt4 book ai didi

common-lisp - 如何在 Common Lisp 中内联函数

转载 作者:行者123 更新时间:2023-12-05 08:40:09 26 4
gpt4 key购买 nike

有人可以告诉我如何在 Common Lisp 中内联一个函数吗?我有很多一直被调用的小函数,所以最好节省这些函数调用的成本。

例如,您将如何在“调用者”函数中内联“独立”函数?

(defun standalone ()
(* 2 5))

(defun caller ()
(standalone))

最佳答案

(declaim (inline standalone))

(defun standalone ()
(* 2 5))

(defun caller ()
(standalone))

文档是 here .

(但请记住,定义一个总是返回数字文字 10 的函数没有多大意义...)

关于common-lisp - 如何在 Common Lisp 中内联函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57028163/

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