GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Function(3) User Contributed Perl Documentation Function(3)

Tie::Function - wrap functions in tied hash sugar

  use Tie::Function 0.01; 
  tie my %a, Tie::Function => sub{join '_'x$_[0],qw/( | )/};
  print "small: $a{1}\nmedium: $a{2}\nwide: $a{3}\n"; 
  # we split on $; to recover multiple arguments
  tie my %times, Tie::Function => sub{
        $_[0] * $_[1]
  };
  print "3 times 5 is $times{3,5}\n"

Tie::Function simplifies wrapping functions in tied hash syntax so they can be interpolated in double-quoted literals without messy intermediate variables.

Here's how I use it the most:

   use HTML::Entities;
   use Tie::Function;
   tie my %Entitize => 'Tie::Function' => \&encode_entities;
   ...
   print <<EOF;
   <em>$Entitize{$somethingaboutsomething}</em><br>
   <textarea name="something"
   cols="60" rows="10">$Entitize{$something}</textarea>
   EOF
   ...

nothing

initial version

relaxed stricture, turned off warnings to silence "split on unitialized value" warning

Copyright (C) 2004,2005 david nicol davidnico@cpan.org released under your choice of the GNU Public or Artistic licenses

perltie

Tie::OneOff

Interpolation

Tie::Filter

overload

2005-05-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.