|
NAMEMath::Prime::Util::PrimeIterator - An object iterator for primesVERSIONVersion 0.73SYNOPSISuse Math::Prime::Util::PrimeIterator; my $it = Math::Prime::Util::PrimeIterator->new(); # Simple use: return current value and move forward. my $sum = 0; $sum += $it->iterate() for 1..10000; # Methods my $v = $it->value(); # Return current value $it->next(); # Move to next prime (returns self) $it->prev(); # Move to prev prime (returns self) $v = $it->iterate(); # Returns current value; moves to next prime $it->rewind(); # Resets position to 2 $it->rewind($n); # Resets position to next_prime($n-1) # Methods similar to Math::NumSeq, do not change iterator $it->tell_i(); # Returns the index of the current position $it->pred($n); # Returns true if $n is prime $it->ith($i); # Returns the $ith prime $it->value_to_i($n); # Returns the index of the first prime >= $n $it->value_to_i_estimate($n); # Approx index of value $n # Methods similar to Math::NumSeq, changes iterator $it->seek_to_i($i); # Resets position to the $ith prime $it->seek_to_value($i); # Resets position to next_prime($i-1) DESCRIPTIONAn iterator over the primes. "new" returns an iterator object and takes an optional starting position (the initial value will be the least prime greater than or equal to the argument). BigInt objects will be returned if the value overflows a Perl unsigned integer value.METHODSnewCreates an iterator object with initial value of 2. If an argument is given, the initial value will be the least prime greater than or equal to the argument.valueReturns the value at the current position. Will always be a prime. If the value is greater than ~0, it will be a Math::BigInt object.nextMoves the current position to the next prime. Returns self so calls can be chained.prevMoves the current position to the previous prime, unless the current value is 2, in which case the value remains 2. Returns self so calls can be chained.iterateReturns the value at the current position and also moves the position to the next prime.rewindResets the current position to either 2 or, if given an integer argument, the least prime not less than the argument.peekReturns the value at the next position without moving the iterator.tell_iReturns the index of the current position, starting at 1 (corresponding to the value 2). The iterator is unchanged after this call.predReturns true if the argument is a prime, false otherwise. The iterator is unchanged after this call.ithReturns the i'th prime, where the first prime is 2. The iterator is unchanged after this call.value_to_i_estimateReturns an estimate of the index corresponding to the argument. That is, given a value "n", we expect a prime approximately equal to "n" to occur at this index.The estimate is performed using "prime_count_approx" in Math::Prime::Util, which uses the estimates of Dusart 2010 (or better for small values). value_to_iIf the argument is prime, returns the corresponding index, such that:ith( value_to_i( $n ) ) == $n Returns "undef" if the argument is not prime. value_to_i_floorvalue_to_i_ceilReturns the index corresponding to the first prime less than or equal to the argument, or greater than or equal to the argument, respectively.seek_to_iResets the position to the prime corresponding to the given index.seek_to_valueAn alias for "rewind".i_start =head2 description =head2 values_min =head2 values_max =head2 oeis_anumMethods to match Math::NumSeq::Primes.SEE ALSOMath::Prime::Util"forprimes" in Math::Prime::Util "prime_iterator" in Math::Prime::Util "prime_iterator_object" in Math::Prime::Util Math::Prime::Util::PrimeArray Math::NumSeq::Primes List::Gen AUTHORSDana Jacobsen <dana@acm.org>COPYRIGHTCopyright 2013 by Dana Jacobsen <dana@acm.org>This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |