This file is indexed.

/usr/share/perl5/Tangram/Core.pod is in libtangram-perl 2.10-2.

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
=head1 NAME

Tangram::Core - import core Tangram modules

=head1 SYNOPSIS

   use Tangram::Core;

   # use additional types, e.g.:
   use Tangram::Type::Array::FromMany;
   use Tangram::Type::Set::FromOne;

=head1 DESCRIPTION

This module imports only the parts of Tangram that are thought to be
essential to any app. This includes: Schema, Storage, Cursor, Expr,
Scalar and Ref. None of the modules that map collections (Array, Hash,
Set and their intrusive variants) are imported. Neither is Deploy.

Tangram::Core allows you to reduce script startup time (and executable
size when perlcc can handle Tangram) by importing only what you
really need. It also makes it possible to add new mappings to Tangram
without penalizing apps that don't need them.