Help for this page

Select Code to Download


  1. or download this
    subtype USZipCodeA
          => as Value
          => where {
              /^$RE{zip}{US}{-extended => 'allow'}$/          
          };
    
  2. or download this
    my $zip_re = qr/^$RE{zip}{US}{-extended => 'allow'}$/;
    
    ...
          => where {
                $_ =~ $zip_re;         
          };
    
  3. or download this
    package AddressA;
     
    ...
    
    1;
    
  4. or download this
    package AddressB;
     
    ...
    has 'zip_code' => (is => 'rw', isa => 'USZipCodeB');
    
    1;
    
  5. or download this
    #!/usr/bin/perl
    
    ...
             );
    
    exit;
    
  6. or download this
        Rate    A    B
    A 2976/s   -- -43%
    B 5187/s  74%   --
    
  7. or download this
    Regexp::Common::_decache
    Regexp::Common::new
    
  8. or download this
    Class::MOP::Instance::new
    Class::MOP::Instance::set_slot_value
    
  9. or download this
        Rate    A    B
    A 2955/s   --  -7%
    B 3174/s   7%   --