哪里可以找到“BIF”的好的erlang参考?

时间:2022-06-01 18:45:28

I have Programming Erlang book already and I use http://www.erlang.org/ site.
But I can't find good reference site for BIFs and modules like lists:duplicate. I found brief explanation from the end of Programming Erlang book but I need more ;( (about parameters, example code.. etc)

anybody can help me out about this?
thanks

我已经编写了Erlang编程书,我使用http://www.erlang.org/ site。但我找不到BIF和模块之类的好的参考站点,如列表:复制。我从编程Erlang书的末尾找到了简短的解释,但我需要更多;((关于参数,示例代码......等)任何人都可以帮我解决这个问题?谢谢

3 个解决方案

#1


How about this page on the Erlang website? For example, you can find documentation for the lists module here.

在Erlang网站上这个页面怎么样?例如,您可以在此处找到列表模块的文档。

#2


The erlang module documentation notes BIFs, and notes which can appear in guards. If you've installed the manpages you can also view the erlang module with erl -man erlang.

erlang模块文档记录了BIF,以及可以出现在警卫中的注释。如果您已安装了联机帮助页,则还可以使用erl -man erlang查看erlang模块。

#1


How about this page on the Erlang website? For example, you can find documentation for the lists module here.

在Erlang网站上这个页面怎么样?例如,您可以在此处找到列表模块的文档。

#2


The erlang module documentation notes BIFs, and notes which can appear in guards. If you've installed the manpages you can also view the erlang module with erl -man erlang.

erlang模块文档记录了BIF,以及可以出现在警卫中的注释。如果您已安装了联机帮助页,则还可以使用erl -man erlang查看erlang模块。

#3