• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

Build.PLH A D30-Jan-2007355

ChangesH A D30-Jan-200754

lib/H05-Apr-20133

Makefile.PLH A D30-Jan-2007306

MANIFESTH A D30-Jan-2007145

META.ymlH A D30-Jan-2007405

READMEH A D30-Jan-2007946

t/H11-Apr-20134

README

1README for Class::Accessor::Chained 0.01
2
3=head1 NAME
4
5Class::Accessor::Chained - make chained accessors
6
7=head1 SYNOPSIS
8
9 package Foo;
10 use base qw( Class::Accessor::Chained );
11 __PACKAGE__->mk_accessors(qw( foo bar baz ));
12
13 my $foo = Foo->new->foo(1)->bar(2)->baz(4);
14 print $foo->bar; # prints 2
15
16
17=head1 DEPENDENCIES
18
19This module has external dependencies on the following modules:
20
21 Class::Accessor
22
23=head1 INSTALLATION
24
25 perl Build.PL
26 perl Build test
27
28and if all goes well
29
30 perl Build install
31
32=head1 HISTORY
33
34What changed over the last 3 revisions
35
36=over
37
38=item 0.01 Monday 24th November, 2003
39
40	initial CPAN release
41=back
42
43=head1 AUTHOR
44
45Richard Clamp <richardc@unixbeard.net>
46
47=head1 COPYRIGHT
48
49Copyright (C) 2003 Richard Clamp.  All Rights Reserved.
50
51This module is free software; you can redistribute it and/or modify it
52under the same terms as Perl itself.
53
54=head1 SEE ALSO
55
56L<Class::Accessor>, L<Class::Accessor::Chained::Fast>
57
58