# 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::Obj::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 HitCollector which records doc nums in a BitVector. 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 - A KinoSearch::Obj::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 isa L. =head1 COPYRIGHT AND LICENSE Copyright 2005-2009 Marvin Humphrey This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut