raises OutOfRange from Standard
is static;
+ IsEmpty(me) returns Boolean from Standard
+ is static;
+ ---Level: Public
+ ---C++: inline
+ ---Purpose: Returns True if this string contains no characters.
+
IsEqual (me ; other : ExtString )
returns Boolean from Standard
is static;
{
return theString1.IsEqual(theString2);
}
+
+//------------------------------------------------------------------------
+// IsEmpty
+//------------------------------------------------------------------------
+inline Standard_Boolean TCollection_ExtendedString::IsEmpty() const
+{
+ return mylength == 0;
+}