Diff for /loncom/types/Stack.pm between versions 1.2 and 1.3

version 1.2, 2003/04/18 06:10:47 version 1.3, 2003/04/24 10:57:57
Line 88  sub pop { Line 88  sub pop {
     return pop(@$self);      return pop(@$self);
 }  }
   
   =pod
   =head 1
     Returns the number of items on the stack.
   
   =cut
   sub Count {
       my $self = shift;
       my $elements = scalar(@$self);
       return $elements;
   }
   
 1;  1;
   

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>