Sha256: 6c2087bb1e2a2a4c3a710a26c13dc65d0984a3effc19c8c0983f9494b1efb050
Contents?: true
Size: 416 Bytes
Versions: 18
Compression:
Stored size: 416 Bytes
Contents
package Moose::Meta::Method::Accessor::Native::Hash::shallow_clone; our $VERSION = '2.2203'; use strict; use warnings; use Params::Util (); use Moose::Role; with 'Moose::Meta::Method::Accessor::Native::Reader'; sub _minimum_arguments { 0 } sub _maximum_arguments { 0 } sub _return_value { my $self = shift; my ($slot_access) = @_; return '{ %{ (' . $slot_access . ') } }'; } no Moose::Role; 1;
Version data entries
18 entries across 9 versions & 1 rubygems