# Auto-generated file -- DO NOT EDIT!!!!!
=head1 NAME
KinoSearch::Search::HitCollector::BitCollector - HitCollector which records doc nums in a BitVector.
=head1 SYNOPSIS
my $bit_vec = KinoSearch::Util::BitVector->new(
capacity => $searcher->doc_max + 1,
);
my $bit_collector = KinoSearch::Search::HitCollector::BitCollector->new(
bit_vector => $bit_vec,
);
$searcher->collect(
collector => $bit_collector,
query => $query,
);
=head1 DESCRIPTION
BitCollector is a HitCollector which saves matching document ids in a
BitVector while ignoring scores. It is useful for recording the entire
set of documents which matches a query.
=head1 CONSTRUCTORS
=head2 new( I<[labeled params]> )
my $bit_collector = KinoSearch::Search::HitCollector::BitCollector->new(
bit_vector => $bit_vec, # required
);
=over
=item *
B<bit_vector> - A KinoSearch::Util::BitVector.
=back
=head1 METHODS
=head2 collect(doc_id)
Set bit in the object's BitVector for the supplied doc id.
=head1 INHERITANCE
KinoSearch::Search::HitCollector::BitCollector isa L<KinoSearch::Search::HitCollector> isa L<KinoSearch::Obj>.
=head1 COPYRIGHT
Copyright 2005-2009 Marvin Humphrey
=head1 LICENSE, DISCLAIMER, BUGS, etc.
See L<KinoSearch> version 0.30.
=cut