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

📄 terminfo.pm

📁 Plucene-1.25.tar.gz PERL版本的lucene
💻 PM
字号:
package Plucene::Index::TermInfo;=head1 NAMEPlucene::Index::TermInfo - Information on an index term=head1 SYNOPSIS	my $term_info = Plucene::Index::TermInfo->new({			doc_freq     => $doc_freq,			freq_pointer => $freq_pointer,			prox_pointer => $prox_pointer,	});=head1 DESCRIPTIONThis class holds information about an index term.=head1 METHODS=cutuse strict;use warnings;use Carp;use base 'Class::Accessor::Fast';=head2 doc_freq / freq_pointer / prox_pointerGet / set term info.=cut__PACKAGE__->mk_accessors(qw( doc_freq freq_pointer prox_pointer ));=head2 copy_in  / clone	$term_info1->copy_in($term_info2);	my $term_info1 = $term_info2->clone;These will make $term_info1 be the same as $term_info2.	=cutsub copy_in {	my ($self, $other) = @_;	%$self = %$other;	return $self;}sub clone {	my $self = shift;	return bless {%$self} => ref $self;}1;

⌨️ 快捷键说明

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