如何根据OTP文档判断Erlang模块属于哪个应用?

bfrts1fy  于 2022-12-08  发布在  Erlang
关注(0)|答案(2)|浏览(146)

如何根据文档来判断Erlang模块属于哪个应用程序?
例如,public_key是内核的一部分,还是stdlib的一部分,或者其他什么?

zaqlnxep

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.

ylamdve6

ylamdve62#

当我单击您提供的链接时,我看到:

相关问题