Sha256: d4606e6e568c140562c48637238fc4b9d998ec669bb2d7531e67da4e56ef07ee
Contents?: true
Size: 401 Bytes
Versions: 14
Compression:
Stored size: 401 Bytes
Contents
package Moose::Meta::Method::Accessor::Native::Bool::set; our $VERSION = '2.2206'; 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
14 entries across 7 versions & 1 rubygems