Lines Matching refs:INSTALL
23 # { NORMALIZER => coderef, INSTALL => name,
84 if (defined $options->{INSTALL}) {
85 # INSTALL => name
86 $install_name = $options->{INSTALL};
87 } elsif (! exists $options->{INSTALL}) {
88 # No INSTALL option provided; use original name if possible
91 # INSTALL => undef means don't install
377 INSTALL => new_name
494 INSTALL => newname,
502 =head2 INSTALL
504 If you supply a function name with C<INSTALL>, memoize will install
508 memoize('fib', INSTALL => 'fastfib')
511 C<INSTALL> option it would have replaced the old C<fib> with the
515 C<INSTALL =E<gt> undef>.