Package::Transporter::Generator::Drain::Random - Generate constant functions with random values


Package-Transporter documentation  | view source Contained in the Package-Transporter distribution.

Index


NAME

Top

Package::Transporter::Generator::Drain::Random - Generate constant functions with random values

SYNOPSIS

Top

	package Parent_Class;
	use Package::Transporter sub{eval shift}, sub {
		$_[0]->register_drain('::Random', 'FOR_FAMILY',
			'ATB_', qw(NAME  STOCK  PRICE));
	};

	package Child_Class;
	BEGIN {our @ISA = ('Parent_Class')}; # more like 'use parent ...'
	use Package::Transporter sub{eval shift}, sub {
		$_[0]->register_drain('::Random', 'FOR_SELF',
			'ATB_', qw(SALE));
	};

	print STDOUT 'ATB_PRICE=', ATB_PRICE, "\n";
	print STDOUT 'ATB_SALE=', ATB_SALE, "\n";
	exit(0);

DESCRIPTION

Top

Random values are unique globally. (Caution: this is implicit drain.)

ANYTHING ELSE

Top

Please see the documentation of the upstream package Package::Transporter.


Package-Transporter documentation  | view source Contained in the Package-Transporter distribution.