如何根据文档来判断Erlang模块属于哪个应用程序?例如,public_key是内核的一部分,还是stdlib的一部分,或者其他什么?
zaqlnxep1#
Look in the top left corner of the documentation page:
Here we see that the lists module is part of the stdlib application.This also applies to public_key : the public_key module is the only documented module of the public_key application.
lists
stdlib
public_key
ylamdve62#
当我单击您提供的链接时,我看到:
2条答案
按热度按时间zaqlnxep1#
Look in the top left corner of the documentation page:
Here we see that the
lists
module is part of thestdlib
application.This also applies to
public_key
: thepublic_key
module is the only documented module of thepublic_key
application.ylamdve62#
当我单击您提供的链接时,我看到: