Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 68502b72fdb974b7b38a17b048a68c1f > files > 38

perl-SOAP-Lite-0.712-4.fc13.noarch.rpm

package My::PersistentIterator;

my $iterator;

sub new { 
  my $self = shift;
  my $class = ref($self) || $self;
  $iterator ||= (bless {_num=>shift} => $class);
}

sub next {
  my $self = shift;
  $self->{_num}++;
}

1;