Sha256: e3dd688693fe0e3dfc71f46cb7d937fabf7e4bf9209f2b7ca9a8142116f3aa38
Contents?: true
Size: 401 Bytes
Versions: 38
Compression:
Stored size: 401 Bytes
Contents
package Moose::Meta::Method::Accessor::Native::Bool::set; our $VERSION = '2.2207'; use strict; use warnings; use Moose::Role; with 'Moose::Meta::Method::Accessor::Native::Writer'; sub _maximum_arguments { 0 } sub _potential_value { 1 } sub _inline_optimized_set_new_value { my $self = shift; my ($inv, $new, $slot_access) = @_; return $slot_access . ' = 1;'; } no Moose::Role; 1;
Version data entries
38 entries across 26 versions & 1 rubygems