The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

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

VERSION

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

SYNOPSIS

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

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