1Package::Stash::XS(3) User Contributed Perl DocumentationPackage::Stash::XS(3)
2
3
4
6 Package::Stash::XS - faster and more correct implementation of the
7 Package::Stash API
8
10 version 0.19
11
13 use Package::Stash;
14
16 This is a backend for Package::Stash, which provides the functionality
17 in a way that's less buggy and much faster. It will be used by default
18 if it's installed, and should be preferred in all environments with a
19 compiler.
20
22 · Prior to perl 5.10, scalar slots are only considered to exist if
23 they are defined
24
25 This is due to a shortcoming within perl itself. See "Making
26 References" in perlref point 7 for more information.
27
28 Please report any bugs through RT: email "bug-package-stash-xs at
29 rt.cpan.org", or browse to
30 http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Package-Stash-XS
31 <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Package-Stash-XS>.
32
34 You can find this documentation for this module with the perldoc
35 command.
36
37 perldoc Package::Stash::XS
38
39 You can also look for information at:
40
41 · AnnoCPAN: Annotated CPAN documentation
42
43 http://annocpan.org/dist/Package-Stash-XS
44 <http://annocpan.org/dist/Package-Stash-XS>
45
46 · CPAN Ratings
47
48 http://cpanratings.perl.org/d/Package-Stash-XS
49 <http://cpanratings.perl.org/d/Package-Stash-XS>
50
51 · RT: CPAN's request tracker
52
53 http://rt.cpan.org/NoAuth/Bugs.html?Dist=Package-Stash-XS
54 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Package-Stash-XS>
55
56 · Search CPAN
57
58 http://search.cpan.org/dist/Package-Stash-XS
59 <http://search.cpan.org/dist/Package-Stash-XS>
60
62 Jesse Luehrs <doy at tozt dot net>
63
64 Based on code from Class::MOP::Package, by Stevan Little and the Moose
65 Cabal.
66
68 · Class::MOP::Package
69
70 This module is a factoring out of code that used to live here
71
73 This software is copyright (c) 2011 by Jesse Luehrs.
74
75 This is free software; you can redistribute it and/or modify it under
76 the same terms as the Perl 5 programming language system itself.
77
78
79
80perl v5.12.2 2011-01-06 Package::Stash::XS(3)