⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tostringutils.pm

📁 外国人写的Perl搜索引擎程序
💻 PM
字号:
package KinoSearch::Util::ToStringUtils;use strict;use warnings;use KinoSearch::Util::ToolSet;use base qw( Exporter );our @EXPORT_OK = qw( boost_to_string );# return a stringified numerical boost if it actually does anything.sub boost_to_string {    my $boost = shift;    return $boost == 1 ? '' : "^$boost";}1;__END__=begin devdocs=head1 NAMEKinoSearch::Util::ToStringUtils - common routines which aid stringification=head1 DESCRIPTIONProvide functions which help with to_string.=head1 COPYRIGHTCopyright 2005-2007 Marvin Humphrey=head1 LICENSE, DISCLAIMER, BUGS, etc.See L<KinoSearch|KinoSearch> version 0.163.=end devdocs=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -