Revision history for Lexical-Types
+0.05 2009-04-28 21:40 UTC
+ + Fix : Building with PERL_IMPLICIT_SYS set (especially on Win32).
+ + Tst : Dieing in callbacks.
+
0.04 2009-03-07 15:45 UTC
+ Chg : Some implementation of pointer table is now used internally.
This should make thread safety more robust.
--- #YAML:1.0
name: Lexical-Types
-version: 0.04
+version: 0.05
abstract: Extend the semantics of typed lexicals.
author:
- Vincent Pit <perl@profvince.com>
bugtracker: http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lexical-Types
homepage: http://search.cpan.org/dist/Lexical-Types/
license: http://dev.perl.org/licenses/
- repository: http://git.profvince.com/perl/modules/Lexical-Types.git
+ repository: http://git.profvince.com/?p=perl%2Fmodules%2FLexical-Types.git
no_index:
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.48
+generated_by: ExtUtils::MakeMaker version 6.50
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
Lexical::Types - Extend the semantics of typed lexicals.
VERSION
- Version 0.04
+ Version 0.05
SYNOPSIS
{ package Str; }
sub new { ... }
CAVEATS
- For "perl" to be able to parse "my Str $x", you need :
-
- * either the "Str" package to be defined ;
-
- * or for "Str" to be a constant sub returning a valid defined package.
-
The restrictions on the type (being either a defined package name or a
constant) apply even if you use the 'as' option to redirect to another
package, and are unlikely to find a workaround as this happens deep
=head1 VERSION
-Version 0.04
+Version 0.05
=cut
our $VERSION;
BEGIN {
- $VERSION = '0.04';
+ $VERSION = '0.05';
}
=head1 SYNOPSIS