home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _64c70e16278a14c41a71a64776da4efe < prev    next >
Text File  |  2004-06-01  |  467b  |  17 lines

  1. # NOTE: Derived from ..\blib\lib\Tk\Listbox.pm.
  2. # Changes made here will be lost when autosplit is run again.
  3. # See AutoSplit.pm.
  4. package Tk::Listbox;
  5.  
  6. #line 366 "..\blib\lib\Tk\Listbox.pm (autosplit into ..\blib\lib\auto\Tk\Listbox\EXISTS.al)"
  7. # EXISTS
  8. # ------
  9. # Returns true if the index exist, and undef if not
  10. sub EXISTS {
  11.    my ( $class, $index ) = @_;
  12.    return undef unless ${$class->{OBJECT}}->get($index);
  13. }
  14.  
  15. # end of Tk::Listbox::EXISTS
  16. 1;
  17.