PPI::Structure::Subscript(3) User Contributed Perl Documentation PPI::Structure::Subscript(3)NAME
PPI::Structure::Subscript - Braces that represent an array or hash subscript
SYNOPSIS
# The end braces for all of the following are subscripts
$foo->[...]
$foo[...]
$foo{...}[...]
$foo->{...}
$foo{...}
$foo[]{...}
INHERITANCE
PPI::Structure::Subscript
isa PPI::Structure
isa PPI::Node
isa PPI::Element
DESCRIPTION
"PPI::Structure::Subscript" is the class used for square and curly braces that specify one element of an array or hash (or a slice/subset
of an array or hash)
METHODS
"PPI::Structure::Subscript" has no methods beyond those provided by the standard PPI::Structure, PPI::Node and PPI::Element methods.
Got any ideas for methods? Submit a report to rt.cpan.org!
SUPPORT
See the support section in the main module.
AUTHOR
Adam Kennedy <adamk@cpan.org>
COPYRIGHT
Copyright 2001 - 2011 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl v5.18.2 2011-02-25 PPI::Structure::Subscript(3)
Check Out this Related Man Page
PPI::Structure::Unknown(3) User Contributed Perl Documentation PPI::Structure::Unknown(3)NAME
PPI::Structure::Unknown - An unknown or unresolved brace structure
INHERITANCE
PPI::Structure::Unknown
isa PPI::Structure
isa PPI::Node
isa PPI::Element
DESCRIPTION
"PPI::Structure::Unknown" is class for braces whose type is unknown, or temporarily unknown.
It primarily exists temporarily inside the lexer. Although some types of braces can be determined immediately at opening, there are a
number of different brace types that can only be correctly identified after the braces are closed.
A structure is typed as unknown during this period it is indeterminate.
A "PPI::Structure::Unknown" object should not ever make it out of the lexer without being converted to it's final type. Any time you
encounter this class in a PDOM tree it should be considered a bug and reported accordingly.
METHODS
"PPI::Structure::Unknown" has no methods beyond those provided by the standard PPI::Structure, PPI::Node and PPI::Element methods.
Got any ideas for methods? Submit a report to rt.cpan.org!
SUPPORT
See the support section in the main module.
AUTHOR
Adam Kennedy <adamk@cpan.org>
COPYRIGHT
Copyright 2001 - 2011 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl v5.18.2 2011-02-25 PPI::Structure::Unknown(3)
I was asked to set up a unix system and i am at a loss. i need to know the best one for a small to medium sized business and how to go about setting up the uids and the guids for the network. what permissions i have available and such. (1 Reply)
Dear ALL,
We are installing AIX 5.3, Can any one suggest me,
1) Preffered Storage Allocation
2) File System Structure
3) Maintainance Level
4) Specific patches need to be added
5) Software tools to be installed,if any.
Thanks for your help,
Regards,
Satya (3 Replies)
Hi everyone
I want to compare numbers line by line
Example
array = 12 15 15 19 14
I have code:
#!bin/csh
set a = 1
set b = 2
while($a<6)
if($array == $array)then
echo "EQUAL"
else if($array < $array)then
echo "SMALLER"
else
echo "BIGGER"
endif
@ a = $a + 1
@ b = $b + 1 (2 Replies)
I have the perl data structure and what i need to do is find all values in
@{$extractColumns{'2'}{'D'}} which are not there in @{$extractColumns{'2'}{'M'}} but seems like i need to put a flag somewhere and i messed up
foreach my $order (keys %extractColumns)
{
foreach my $value... (2 Replies)
Dear All
On my Linux server, I need to separate the individual logs coming from various modules concurrently. Please find below a sample of the logs:
But when I run it, I am receiving the following error:
-bash: -f1.log : command not found
-bash: $LOGFILE : ambiguous redirect
Can you... (4 Replies)
Hi,
A piece of script from Perl-cookbook I do not understand, and post here for explanation.
The purpose is to find the element in either array (union), and in both array (intersection). Thank you in advance.
@a=qw(1 3 5 6 7 8);
@b=qw(2 3 5 7 9);
foreach $e (@a, @b) {$union{$e}++ &&... (3 Replies)
file.txt
apple
apples{
applepicture
apple9
apple cake{
abple
apple_and_cake
appleapple
apple
apple(
and my script
while read line; do
if ]; then
echo "$line"
fi
done <file.txt
read (10 Replies)