[haXe] Bug in List class

Michael Pliskin pl at tepkom.ru
Tue Apr 25 10:46:30 CEST 2006


Hello list,

  I think I have found a small bug in List class:
  public function isEmpty() : Bool {
         return (h != null);
  }

  should be (as I guess):
  public function isEmpty() : Bool {
         return (h == null);
  }
  

-- 
Best regards,
 Michael                          mailto:pl at tepkom.ru




More information about the Haxe mailing list