X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=blobdiff_plain;f=README;h=4d8dcdca62af38291d8766adada3aa9a0a2201c4;hp=12f52f132e3e6c6c7045c73e83c7c7a4a76d3173;hb=f150c894e167f61657768a604642dfe052d12046;hpb=bf1b09f4ab8df1710df549764d511b110c6cb396 diff --git a/README b/README index 12f52f1..4d8dcdc 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Lexical::Types - Extend the semantics of typed lexicals. VERSION - Version 0.09 + Version 0.10 SYNOPSIS { package Str; } @@ -148,7 +148,7 @@ INTEGRATION sub import { my $pkg = caller; - for (qw/Str Int/) { + for (qw) { my $type = __PACKAGE__ . '::' . $_; no strict 'refs'; no warnings 'redefine'; @@ -176,6 +176,11 @@ CONSTANTS True iff the module could have been built with thread-safety features enabled. + "LT_FORKSAFE" + True iff this module could have been built with fork-safety features + enabled. This will always be true except on Windows where it's false for + perl 5.10.0 and below . + CAVEATS 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 @@ -195,7 +200,12 @@ CAVEATS addressed in perl 5.10. DEPENDENCIES - perl 5.8, XSLoader. + perl 5.8.3. + + A C compiler. This module may happen to build with a C++ compiler as + well, but don't rely on it, as no guarantee is made in this regard. + + XSLoader (standard since perl 5.006). SEE ALSO fields. @@ -228,7 +238,7 @@ ACKNOWLEDGEMENTS Thanks Florian Ragwitz for suggesting the use of constants for types. COPYRIGHT & LICENSE - Copyright 2009,2010 Vincent Pit, all rights reserved. + Copyright 2009,2010,2011 Vincent Pit, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.