# NOTE: Derived from ../blib/lib/Tk/Listbox.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Listbox;
#line 336 "../blib/lib/Tk/Listbox.pm (autosplit into ../blib/lib/auto/Tk/Listbox/SHIFT.al)"
# SHIFT
# -----
# Removes the first element and returns it
sub SHIFT {
my $class = shift;
my $value = ${$class->{OBJECT}}->get(0);
${$class->{OBJECT}}->delete(0);
return $value
}
# end of Tk::Listbox::SHIFT
1;