package Search::Xapian::ValueIterator; use 5.006; use strict; use warnings; use Carp; require Exporter; require DynaLoader; our @ISA = qw(Exporter DynaLoader); # Items to export into caller's namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our @EXPORT_OK = ( ); our @EXPORT = qw( ); # Preloaded methods go here. use overload '++' => sub { $_[0]->inc() }, '=' => sub { $_[0]->clone() }, 'eq' => sub { $_[0]->equal($_[1]) }, 'ne' => sub { $_[0]->nequal($_[1]) }, '==' => sub { $_[0]->equal($_[1]) }, '!=' => sub { $_[0]->nequal($_[1]) }, '""' => sub { $_[0]->get_value() }, 'fallback' => 1; sub clone() { my $self = shift; my $class = ref( $self ); my $copy = new2( $self ); bless $copy, $class; return $copy; } sub new() { my $class = shift; my $iterator; my $invalid_args; if( scalar(@_) == 0 ) { $iterator = new1(); } elsif( scalar(@_) == 1 and ref( $_[1] ) eq $class ) { $iterator = new2(@_); } else { $invalid_args = 1; } if( $invalid_args ) { Carp::carp( "USAGE: $class->new(), $class->new(\$iterator)" ); exit; } bless $iterator, $class; return $iterator; } 1;