| Scalar-Cycle-Manual documentation | Contained in the Scalar-Cycle-Manual distribution. |
Scalar::Cycle::Manual - Cycle through a list of values (with optional automatic incrementation)
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual', qw( first second third ) ; print $cyclic_variable; # 'first' print $cyclic_variable; # still 'first' print $cyclic_variable->next ; # 'second' print $cyclic_variable; # still 'first' print $cyclic_variable->previous; # 'third' print $cyclic_variable; # still 'first' print $cyclic_variable->increment; print $cyclic_variable; # 'second' print $cyclic_variable->increment; print $cyclic_variable; # 'third' $cyclic_variable->reset; print $cyclic_variable; # first print $cyclic_variable->decrement; print $cyclic_variable; # 'third' $cyclic_variable++; print $cyclic_variable; # 'first' $cyclic_variable--; print $cyclic_variable; # 'third' $cyclic_variable->auto_increment(1) ; print $cyclic_variable; # 'third' print $cyclic_variable; # 'first'
There's a bunch of modules implementing a scalar which cycles in a list of values. Take your time to compare them.
If you want more control over when the variable cycles, this module may suit your needs.
Use Scalar::Cycle::Manual to go through a list over and over again. Once you get to the end of the list, you go back to the beginning.
These operator act as the increment and decrement subroutines.
These operators implement the fetching of the current value in scalar and string context.
The '<>' operator returns the current value and increments the current position even if auto_increment is set to 0.
Creates a Scalar::Cycle::Manual object that you can use to cycle through values.
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ;
Arguments
Return
This is needed by the ++ operator.
When set, the current position in the value list is automatically incremented after the value is accessed.
When a Scalar::Cycle::Manual object is created, auto_increment is set to false.
my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ; print $cyclic_variable; # 'first' print $cyclic_variable; # 'first' $cyclic_variable->auto_increment(1) ; print $cyclic_variable; # 'second' print $cyclic_variable; # 'third' my $is_auto_increment_on = $cyclic_variable->auto_increment() ;
Arguments
Return
Transform the object to the current cycle values. This is automatically called by Perl.
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ; my $value = $cyclic_variable ; print $cyclic_variable ;
Return
Forces the Scalar::Cycle::Manual to change to the next value in the cycle value list.
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ; print $cyclic_variable->increment; print $cyclic_variable ; # or print $cyclic_variable->increment;
Return
Forces the Scalar::Cycle::Manual to change to the previous value in the value list.
print $cyclic_variable->previous; print $cyclic_variable ; # or print $cyclic_variable->previous;
Return
Makes the current value the first value in the value list.
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ; $cyclic_variable->auto_increment(1) ; print $cyclic_variable; # 'first' $cyclic_variable->reset ; print $cyclic_variable; # 'first'
Returns the value prior to the value at the current position. This does not affect the current position in the cycle value list.
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ;
Return
Returns the value next to the value at the current position. This does not affect the current position in the value list.
use Scalar::Cycle::Manual ; my $cyclic_variable = new 'Scalar::Cycle::Manual'( qw( first second third )) ;
Return
None so far.
Khemir Nadim ibn Hamouda CPAN ID: NKH mailto:nadim@khemir.net
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
You can find documentation for this module with the perldoc command.
perldoc Scalar::Cycle::Manual
You can also look for information at:
Please report any bugs or feature requests to L <bug-Scalar-cycle-manual@rt.cpan.org>.
We will be notified, and then you'll automatically be notified of progress on your bug as we make changes.
Scalar-MultiValue
by Graciliano Monteiro Passos: Create a SCALAR with multiple values.
List-Rotation
by Imre Saling: Loop (Cycle, Alternate or Toggle) through a list of values via a singleton object implemented as closure.
Tie::FlipFlop
by Abigail: Alternate between two values.
List::Cycle
by Andi Lester: Objects for cycling through a list of values
Tie::Cycle
by Brian D. Foy: Cycle through a list of values via a scalar.
Tie::Toggle
by Brian D. Foy: False and true, alternately, ad infinitum.
| Scalar-Cycle-Manual documentation | Contained in the Scalar-Cycle-Manual distribution. |
package Scalar::Cycle::Manual ; use strict; use warnings ; BEGIN { use Sub::Exporter -setup => { exports => [ qw() ], groups => { all => [ qw() ], } }; use vars qw ($VERSION); $VERSION = 0.02; } #------------------------------------------------------------------------------- #~ use English qw( -no_match_vars ) ; #~ use Carp qw(carp croak confess) ;
## no critic use constant CURRENT_INDEX => 0 ; use constant MAX_INDEX => 1 ; use constant VALUES => 2 ; use constant AUTO_INCREMENT=> 3 ; ## use critic #------------------------------------------------------------------------------- use overload '=' => \©_constructor, '<>' => \&increment, '++' => \&increment, '--' => \&decrement, '""' => \&as_scalar, '0+' => \&as_scalar; #------------------------------------------------------------------------------- sub new {
my ($class , @values) = @_ ; return(bless [ 0, scalar(@values) - 1, \@values, 0], ($class || __PACKAGE__)) ; } #------------------------------------------------------------------------------- sub copy_constructor {
my ($self) = @_ ; return(bless [ @{$self}], __PACKAGE__); } #------------------------------------------------------------------------------- sub auto_increment {
my ($self, $auto_increment) = @_ ; return ( defined $auto_increment ? $self->[AUTO_INCREMENT] = $auto_increment : $self->[AUTO_INCREMENT] ); } #------------------------------------------------------------------------------- sub as_scalar {
#~ my @caller = caller() ; #~ print "@caller as_scalar\n" ; my ($self) = @_ ; my $value = $self->[VALUES][$self->[CURRENT_INDEX]]; if($self->[AUTO_INCREMENT]) { $self->[CURRENT_INDEX]++; $self->[CURRENT_INDEX] = 0 if $self->[CURRENT_INDEX] > $self->[MAX_INDEX]; } return($value) ; } #------------------------------------------------------------------------------- sub increment {
my ($self) = @_ ; my $value = $self->[VALUES][$self->[CURRENT_INDEX]] ; $self->[CURRENT_INDEX]++ ; $self->[CURRENT_INDEX] = 0 if $self->[CURRENT_INDEX] > $self->[MAX_INDEX]; return($value) ; } #------------------------------------------------------------------------------- sub decrement {
my ($self) = @_ ; my $value = $self->[VALUES][$self->[CURRENT_INDEX]] ; $self->[CURRENT_INDEX]-- ; $self->[CURRENT_INDEX] = $self->[MAX_INDEX] if $self->[CURRENT_INDEX] < 0 ; return($value) ; } #------------------------------------------------------------------------------- sub reset ## no critic (Subroutines::ProhibitBuiltinHomonyms) {
my ($self) = @_ ; $self->[CURRENT_INDEX] = 0 ; return ; } #------------------------------------------------------------------------------- sub previous {
my ($self) = @_ ; my $index = $self->[CURRENT_INDEX] ; $index-- ; $index = $self->[MAX_INDEX] if $index < 0; return($self->[VALUES][$index]) ; } #------------------------------------------------------------------------------- sub next ## no critic (Subroutines::ProhibitBuiltinHomonyms) {
my ($self) = @_ ; my $index = $self->[CURRENT_INDEX] ; $index++ ; $index = 0 if $index > $self->[MAX_INDEX]; return($self->[VALUES][$index]) ; } #------------------------------------------------------------------------------- 1 ;