home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / MacPerl5 / pod / modpods / Abbrev.pod next >
Encoding:
Text File  |  1994-12-26  |  373 b   |  20 lines  |  [TEXT/MPS ]

  1. =head1 NAME
  2.  
  3. abbrev - create an abbreviation table from a list
  4.  
  5. =head1 SYNOPSIS
  6.  
  7.     use Abbrev;
  8.     abbrev *HASH, LIST
  9.  
  10.  
  11. =head1 DESCRIPTION
  12.  
  13. Stores all unambiguous truncations of each element of LIST
  14. as keys key in the associative array indicated by C<*hash>.
  15. The values are the original list elements.
  16.  
  17. =head1 EXAMPLE
  18.  
  19.     abbrev(*hash,qw("list edit send abort gripe"));
  20.