方案库程序的实现细节?
根据我的理解,诸如映射、应用、附加等方案程序都是在方案本身中编写的。有没有一种简单的方法可以在 REPL 中查看这些过程的实现?
As per my understanding scheme procedures like map,apply,append etc are written in scheme itself. Is there an easy way to see the implementation of these procedues right inside the REPL ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信有一个标准的方法来转储程序的源代码,但是定义了很多列表函数 此处,您可以查看实现的源代码以了解其余部分。但请注意,
apply
可能是一个原语。I do not believe there is a standard way to dump the source code of a procedure, but a lot of the list functions are defined here, and you can look through the source code for your implementation to see the rest. Note that
apply
is probably a primitive, though.