The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

# App::GitFind::Entry::GitIndex - App::GitFind::Entry wrapper for a Git::Raw::Index::Entry

SYNOPSIS

This represents a single file or directory being checked against an expression. This particular concrete class represents a Git index entry. It requires a Git::Raw::Index::Entry instance. Usage:

    use Git::Raw 0.83;
    my $index = Git::Raw::Repository->discover('.')->index;
    my @entries = $index->entries;
    my $entry = App::GitFind::Entry::GitIndex->new(-obj => $entries[0]);

METHODS

prune

TODO

BUILD

Enforces the requirements on the -obj argument to new().