如何从模块的CPAN页面判断它是否在核心发行版中?

时间:2021-05-17 07:15:07

For example, when going through the Time::HiRes documentation on search.cpan.org, is there some indication in the page itself the module is now part of Perl core distribution? I know I can usually find that out with some googling, but I'm trying to know if there’s an easier way.

例如,当浏览search.cpan.org上的Time :: HiRes文档时,页面本身是否有一些指示模块现在是Perl核心发行版的一部分?我知道我通常可以通过一些谷歌搜索找到它,但我想知道是否有更简单的方法。

4 个解决方案

#1


17  

Use corelist.

使用核心列表。

>corelist Time::HiRes

Data for 2013-06-21
Time::HiRes was first released with perl v5.7.3

Also try corelist -a Time::HiRes

还可以尝试corelist -a Time :: HiRes

#2


3  

Web site corelist is a web interface to Module::CoreList like the command line tool with the same name. Like the command line tool, the web interface is able to compare two Perl versions for modules that have been added, removed and/or updated.

网站核心列表是Module :: CoreList的Web界面,就像具有相同名称的命令行工具一样。与命令行工具一样,Web界面能够比较已添加,删除和/或更新的模块的两个Perl版本。

#3


1  

If you want a list of the standard modules installed with Perl, see http://perldoc.perl.org/perlmodlib.html#Standard-Modules

如果您需要使用Perl安装的标准模块列表,请参阅http://perldoc.perl.org/perlmodlib.html#Standard-Modules

#4


-1  

Not directly, but you can get fairly close.

不是直接的,但你可以相当接近。

Open perlmodlib in another browser tab or run perldoc perlmodlib in a shell window. Then search the perlmodlib documentation, particularly the Standard Modules section, for the name of the module in question.

在另一个浏览器选项卡中打开perlmodlib或在shell窗口中运行perldoc perlmodlib。然后搜索perlmodlib文档,特别是标准模块部分,以获取相关模块的名称。

#1


17  

Use corelist.

使用核心列表。

>corelist Time::HiRes

Data for 2013-06-21
Time::HiRes was first released with perl v5.7.3

Also try corelist -a Time::HiRes

还可以尝试corelist -a Time :: HiRes

#2


3  

Web site corelist is a web interface to Module::CoreList like the command line tool with the same name. Like the command line tool, the web interface is able to compare two Perl versions for modules that have been added, removed and/or updated.

网站核心列表是Module :: CoreList的Web界面,就像具有相同名称的命令行工具一样。与命令行工具一样,Web界面能够比较已添加,删除和/或更新的模块的两个Perl版本。

#3


1  

If you want a list of the standard modules installed with Perl, see http://perldoc.perl.org/perlmodlib.html#Standard-Modules

如果您需要使用Perl安装的标准模块列表,请参阅http://perldoc.perl.org/perlmodlib.html#Standard-Modules

#4


-1  

Not directly, but you can get fairly close.

不是直接的,但你可以相当接近。

Open perlmodlib in another browser tab or run perldoc perlmodlib in a shell window. Then search the perlmodlib documentation, particularly the Standard Modules section, for the name of the module in question.

在另一个浏览器选项卡中打开perlmodlib或在shell窗口中运行perldoc perlmodlib。然后搜索perlmodlib文档,特别是标准模块部分,以获取相关模块的名称。