C<copy>
This magic only applies to tied arrays and hashes, and fires when you try to access or change their elements.
-It is available on your perl if and only if C<MGf_COPY> is true.
=item *
=head2 C<MGf_COPY>
Evaluates to true if and only if the 'copy' magic is available.
+This is the case for perl 5.7.3 and greater, which is ensured by the requirements of this module.
=head2 C<MGf_DUP>
Evaluates to true if and only if the 'dup' magic is available.
+This is the case for perl 5.7.3 and greater, which is ensured by the requirements of this module.
=head2 C<MGf_LOCAL>
Evaluates to true if and only if the 'local' magic is available.
+This is the case for perl 5.9.3 and greater.
=head2 C<VMG_UVAR>
When this constant is true, you can use the C<fetch,store,exists,delete> callbacks on hashes.
-Initial VMG_UVAR capability was introduced in perl 5.9.5, with a fully functional implementation shipped with perl 5.10.0.
+Initial L</VMG_UVAR> capability was introduced in perl 5.9.5, with a fully functional implementation shipped with perl 5.10.0.
=head2 C<VMG_COMPAT_SCALAR_LENGTH_NOLEN>