方案标准功能?
在哪里可以找到方案标准函数的列表以及描述如何使用它们?
Where can I find a list of the scheme standard functions and descriptions for how to use them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在哪里可以找到方案标准函数的列表以及描述如何使用它们?
Where can I find a list of the scheme standard functions and descriptions for how to use them?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用 PLT 文档,其中包含 R5RS 和 R6RS 的索引。要将搜索限制为 R5RS,请使用
M:r5rs
作为搜索词,要对 R6RS 进行搜索,请使用M:rnrs
。You can use the PLT documentation, which includes indexes into both R5RS and R6RS. To restrict a search to R5RS, use
M:r5rs
as a search term, and to do it for R6RS useM:rnrs
.这里:http://people.csail.mit.edu/jaffer/r5rs_8.html< /a>
Here: http://people.csail.mit.edu/jaffer/r5rs_8.html
它们有点密集,但您始终可以检查您正在使用的任何版本的计划的修订报告。因此,此将为您带来第六次修订计划报告 (r6rs)。该报告的“基础库”一章将告诉您Scheme 的基础库中提供了哪些函数,并提供了如何使用它们的示例。您还可以找到一份文档,其中包含有关 Scheme 的各种标准库中包含的函数的信息,您可以在程序中导入和使用这些函数。
They're a bit dense, but you can always check the revised reports for whatever version of Scheme you're working with. So this will bring you to the 6th Revised Report on Scheme (r6rs). The report's 'Base Library' chapter will tell you which functions are available in Scheme's basic library, as well as provide examples of how to use them. You'll also find a document with information on the functions contained in Scheme's various standard libraries, which you can import and use in your programs.