debian man page for perl::critic::policy::variables::requirenegativeindices

Query: perl::critic::policy::variables::requirenegativeindices

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

Perl::Critic::Policy::Variables::RequireNegativeIndices(User Contributed Perl DocumentPerl::Critic::Policy::Variables::RequireNegativeIndices(3pm)

NAME
Perl::Critic::Policy::Variables::RequireNegativeIndices - Negative array index should be used.
AFFILIATION
This Policy is part of the core Perl::Critic distribution.
DESCRIPTION
Conway points out that $arr[$#arr]; $arr[$#arr-1]; $arr[@arr-1]; $arr[@arr-2]; are equivalent to $arr[-1]; $arr[-2]; $arr[-1]; $arr[-2]; and the latter are more readable, performant and maintainable. The latter is because the programmer no longer needs to keep two variable names matched. This policy notices all of the simple forms of the above problem, but does not recognize any of these more complex examples: $some->[$data_structure]->[$#{$some->[$data_structure]} -1]; my $ref = @arr; $ref->[$#arr];
CONFIGURATION
This Policy is not configurable except for the standard options.
AUTHOR
Chris Dolan <cdolan@cpan.org>
COPYRIGHT
Copyright (c) 2006-2011 Chris Dolan. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-06-07 Perl::Critic::Policy::Variables::RequireNegativeIndices(3pm)
Related Man Pages
perl::critic::policy::modules::requireendwithone(3) - centos
perl::critic::policy::variables::requirenegativeindices(3) - centos
perl::critic::policy::modules::requireendwithone(3pm) - debian
perl::critic::policy::regularexpressions::prohibitsinglecharalte(3pm) - debian
perl::critic::policy::variables::prohibitunusedvariables(3pm) - debian
Similar Topics in the Unix Linux Community
AWK help please
Perl Script issue. What am I doing wrong?
bash Script: Issue with iterating Directory and store into array
comparing two files using awk
Integer array length