Getopt::Complete::LazyOptions - internal object used as a placeholder for unprocessed options


Getopt-Complete documentation  | view source Contained in the Getopt-Complete distribution.

Index


NAME

Top

Getopt::Complete::LazyOptions - internal object used as a placeholder for unprocessed options

VERSION

Top

This document describes Getopt::Complete::LazyOptions 0.25.

SYNOPSIS

Top

    use Getopt::Complete (
        "foo=n" => [11,22,33],
        "bar=s" => "f",
        ">"     =>  sub {
                        my $values = [];
                        # code to generate completions for this option here...
                        return $values;
                    }
    );

DESCRIPTION

Top

This class is used internally by Getopt::Complete::Options.


Getopt-Complete documentation  | view source Contained in the Getopt-Complete distribution.