X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FManual%2FFAQ.pod;h=5a8cda04a9aab3cd389448df04df529ac486a5c2;hb=9a4046d2fb3c407c0c950b08ee944f9b1f42fd27;hp=422b5c8504aa8ac42fa4304cf6531a443272e459;hpb=e5a728d90e9d494fc8e6cb93f504e0d851d00cb4;p=gitmo%2FMoose.git diff --git a/lib/Moose/Manual/FAQ.pod b/lib/Moose/Manual/FAQ.pod index 422b5c8..5a8cda0 100644 --- a/lib/Moose/Manual/FAQ.pod +++ b/lib/Moose/Manual/FAQ.pod @@ -91,7 +91,7 @@ coercions, and C, so subclassing is often not the ideal route. That said, if you really need to inherit from a non-Moose class, see -L for an example of how to do it, +L for an example of how to do it, or take a look at L. =head2 Accessors @@ -129,7 +129,7 @@ NOTE: This B be set globally in Moose, as that would break other classes which are built with Moose. You can still save on typing by defining a new C that exports Moose's sugar and then turns on L. See -L. +L. =head3 How can I inflate/deflate values in accessors? @@ -266,7 +266,13 @@ C constraint check. =head3 Can I turn off type constraint checking? -Not yet. This option may come in a future release. +There's no support for it in the core of Moose yet. This option may +come in a future release. + +Meanwhile there's a L that +allows you to do this on a per-attribute basis, and if it doesn't do +what you it's easy to write one that fits your use case. =head3 My coercions stopped working with recent Moose, why did you break it?