HaikuDepot/List: added IsEmpty() method

This commit is contained in:
Stephan Aßmus 2014-09-05 23:23:00 +02:00
parent 87038da74f
commit 863f0b1979

View File

@ -99,6 +99,11 @@ public:
{
_Resize(0);
}
inline bool IsEmpty() const
{
return fCount == 0;
}
inline int32 CountItems() const
{