home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _8beb15d6f62673281e75d5abcd581a69 < prev    next >
Encoding:
Text File  |  2004-06-01  |  487 b   |  20 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 336 "..\blib\lib\Tk\Listbox.pm (autosplit into ..\blib\lib\auto\Tk\Listbox\SHIFT.al)"
  7. # SHIFT
  8. # -----
  9. # Removes the first element and returns it
  10. sub SHIFT {
  11.    my $class = shift;
  12.  
  13.    my $value = ${$class->{OBJECT}}->get(0);
  14.    ${$class->{OBJECT}}->delete(0);
  15.    return $value
  16. }
  17.  
  18. # end of Tk::Listbox::SHIFT
  19. 1;
  20.