Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where can I find good erlang reference for "BIFs"?

Tags:

erlang

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

like image 630
Sungwon Jeong Avatar asked Mar 01 '23 00:03

Sungwon Jeong


2 Answers

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

like image 74
Luke Woodward Avatar answered Mar 06 '23 20:03

Luke Woodward


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.

like image 23
ayrnieu Avatar answered Mar 06 '23 20:03

ayrnieu