From: Shawn M Moore Date: Tue, 8 Apr 2008 09:43:27 +0000 (+0000) Subject: Non hashref instances are no longer a pipe dream, update the caveat in Recipe1 X-Git-Tag: 0_55~241 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1eca36fc96204137a3ddf5038610fde40c55e39e;p=gitmo%2FMoose.git Non hashref instances are no longer a pipe dream, update the caveat in Recipe1 --- diff --git a/lib/Moose/Cookbook/Recipe1.pod b/lib/Moose/Cookbook/Recipe1.pod index c5be366..3a22ba5 100644 --- a/lib/Moose/Cookbook/Recipe1.pod +++ b/lib/Moose/Cookbook/Recipe1.pod @@ -197,10 +197,14 @@ L documentation. =item (2) -Future plans for Moose include allowing for alternate instance -structures such as blessed ARRAY refs and such. If you want your -Moose classes to be interchangeable, it is advisable to avoid -direct instance access, like that shown above. +Moose supports using instance structures other than blessed hash +references (such as in a glob reference -- see +L). If you want your Moose classes to +be interchangeable, it is advisable to avoid direct instance +access, like that shown above. Moose does let you get and set +attributes directly without exposing the instance structure, but +that's an advanced topic (intrepid readers should refer to the +L). =back