Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

class::accessor::fast(3pm) [debian man page]

Class::Accessor::Fast(3pm)				User Contributed Perl Documentation				Class::Accessor::Fast(3pm)

NAME
Class::Accessor::Fast - Faster, but less expandable, accessors SYNOPSIS
package Foo; use base qw(Class::Accessor::Fast); # The rest is the same as Class::Accessor but without set() and get(). DESCRIPTION
This is a faster but less expandable version of Class::Accessor. Class::Accessor's generated accessors require two method calls to accompish their task (one for the accessor, another for get() or set()). Class::Accessor::Fast eliminates calling set()/get() and does the access itself, resulting in a somewhat faster accessor. The downside is that you can't easily alter the behavior of your accessors, nor can your subclasses. Of course, should you need this later, you can always swap out Class::Accessor::Fast for Class::Accessor. Read the documentation for Class::Accessor for more info. EFFICIENCY
"EFFICIENCY" in Class::Accessor for an efficiency comparison. AUTHORS
Copyright 2007 Marty Pauley <marty+perl@kasei.com> This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. That means either (a) the GNU General Public License or (b) the Artistic License. ORIGINAL AUTHOR Michael G Schwern <schwern@pobox.com> SEE ALSO
Class::Accessor perl v5.10.0 2009-09-15 Class::Accessor::Fast(3pm)

Check Out this Related Man Page

Class::Accessor::Fast(3)				User Contributed Perl Documentation				  Class::Accessor::Fast(3)

NAME
Class::Accessor::Fast - Faster, but less expandable, accessors SYNOPSIS
package Foo; use base qw(Class::Accessor::Fast); # The rest is the same as Class::Accessor but without set() and get(). DESCRIPTION
This is a faster but less expandable version of Class::Accessor. Class::Accessor's generated accessors require two method calls to accompish their task (one for the accessor, another for get() or set()). Class::Accessor::Fast eliminates calling set()/get() and does the access itself, resulting in a somewhat faster accessor. The downside is that you can't easily alter the behavior of your accessors, nor can your subclasses. Of course, should you need this later, you can always swap out Class::Accessor::Fast for Class::Accessor. Read the documentation for Class::Accessor for more info. EFFICIENCY
"EFFICIENCY" in Class::Accessor for an efficiency comparison. AUTHORS
Copyright 2007 Marty Pauley <marty+perl@kasei.com> This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. That means either (a) the GNU General Public License or (b) the Artistic License. ORIGINAL AUTHOR Michael G Schwern <schwern@pobox.com> SEE ALSO
Class::Accessor perl v5.16.2 2009-09-15 Class::Accessor::Fast(3)
Man Page

6 More Discussions You Might Find Interesting

1. HP-UX

D Class HP 9000 Server Setup

I work for a school and just received a set of HP-UX machines. I did ok with the Vizualize workstations in that they had video cards and all, but I am attempting to set up the D Class (D250) servers that we received and they are terminal only. I have the terminals and keyboards for them, but am... (11 Replies)
Discussion started by: NoHope
11 Replies

2. AIX

Fast Connect Server

I am trying to setup a Fast Connect Server on my AIX 5.3 box to create a shared directory for users. The problem I'm having is that I can map the shared directory onto a PC only if I specify the IP address of the AIX server. If I specify the DNS name of the AIX server, the map on the PC to the Fast... (4 Replies)
Discussion started by: asch337
4 Replies

3. UNIX for Dummies Questions & Answers

Fast export in unix

/opt/teradata/client/bin/fexp <<EOP .LOGTABLE load_work.datastore_log1 ; .LOGON BOX/userid,password; .BEGIN EXPORT SESSIONS 20; .EXPORT OUTFILE $path MODE RECORD FORMAT TEXT; select trim(cast(PROC_YYMM_DT as char(5))) (title ''), cast('~' as char(1)), trim(cast(ACCNO as char(21)))... (1 Reply)
Discussion started by: depakjan
1 Replies

4. Red Hat

Fast yet simple way to navigate directories

If you are like me, typing CD command again and again would quickly get tiresome and wonder there must be a better way to do it. I have done some searching on Google and this forum. The results I get (using alias, CDPATH or PUSHD) do not satisfy me completely, so I decide to do it my way.... (10 Replies)
Discussion started by: IKE0000
10 Replies

5. Shell Programming and Scripting

Fast export in UNIX using Teradata creating issue

Hi All, I am trying to export a file using Fast Export (Teradata) in UNIX. The desired output length is 550 bytes, but the output file is creating string till 75 characters. How to get the full length file? .LOGON .EXPORT file=export.txt; SELECT CAST(('' || (CAST('UD ' AS CHAR(3))) || ... (2 Replies)
Discussion started by: unankix
2 Replies

6. Shell Programming and Scripting

awk script to find duplicate values

The data below consits of items with Class, Sub Class and Property values. I would like to find out same value being captured for different property values for a same Class/Sub Class combination (with in an Item & across items). Like 123 being captured for PAD1, PAD2, PAD4 for ABC-DEF, 456 captured... (4 Replies)
Discussion started by: aramacha
4 Replies