]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Clarify when get/set magic triggers for container types
authorVincent Pit <vince@profvince.com>
Sat, 8 Aug 2009 07:38:09 +0000 (09:38 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 8 Aug 2009 07:38:09 +0000 (09:38 +0200)
lib/Variable/Magic.pm

index 0a47ae784765acf4504fa735c43ba870dc704e3a..1ac6898022a72d1c6d27eba58a6e8efc4588049f 100644 (file)
@@ -105,13 +105,15 @@ The operations that can be overloaded are :
 
 C<get>
 
-This magic is invoked when the variable is evaluated (does not include array/hash subscripts and slices).
+This magic is invoked when the variable is evaluated.
+It is never called for arrays and hashes.
 
 =item *
 
 C<set>
 
-This one is triggered each time the value of the variable changes (includes array/hash subscripts and slices).
+This one is triggered each time the value of the variable changes.
+It is called for array subscripts and slices, but never for hashes.
 
 =item *