This file is indexed.

/usr/share/perl5/perl5i/2/autobox.pm is in libperl5i-perl 2.8.0-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package perl5i::2::autobox;

use strict;
use warnings;

# Load these after we're fully compiled because they
# use us internally.
require perl5i::2::SCALAR;
require perl5i::2::ARRAY;
require perl5i::2::HASH;
require perl5i::2::UNIVERSAL;
require perl5i::2::CODE;

# List::Util needs to be before Core to get the C version of sum
use parent 'autobox::List::Util';
use parent 'autobox::Core';

sub import {
    my $class = shift;
    $class->autobox::import();
    $class->autobox::import(
        UNIVERSAL => 'perl5i::2::UNIVERSAL',
        DEFAULT   => 'perl5i::2::'
    );
    autobox::List::Util::import($class);
    autobox::Core::import($class);
}

1;