本文介绍了lisp函数的实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在C中,如果我想查看一个如何工作的函数,我打开提供该函数并分析代码的库。怎样才能看到lisp函数的实现?例如,交集函数解决方案
您也可以查看lisp函数的源代码。
例如,CLISP的源文件(一个Common Lisp实现)可在此处获得:
如果您想检查相关功能的执行情况到列表中,您可以查看该文件:
In C, if I want to see a function that how to work, I open the library which provides the function and analyze the code. How can be implementations of the lisp functions seen? For example, intersection function
解决方案
You can also look at the source code of lisp functions.
For example, the source files for CLISP, one Common Lisp implementation, are available here: http://www.clisp.org/impnotes/src-files.html
If you want to examine the implementation of functions related to lists, you can look at the file: http://clisp.cvs.sourceforge.net/viewvc/clisp/clisp/src/list.d
这篇关于lisp函数的实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!