This facilitates appendage of the string value with data from a stream

Return TypeFunction nameArguments
istream&operator>>(istream&,hzString&,)

Declared and defined in file: hzString.cpp

Function Logic:

0:START 1:items 2:unknown 3:items 4:str 5:Return is

Function body:

istream& operator>> (istream& is)hzString& str, 
{
   //  Category: Data Input
   //  
   //  This facilitates appendage of the string value with data from a stream
   //  
   //  Arguments: 1) is  Input stream
   //     2) obj  String to be populated by the read operation
   //  
   //  Returns: Reference to this string instance
   _hzfunc("hzString::operator>>") ;
   std::string s ;     //  STL string
   std::getline(is, s) ;
   if (!s.length())
       std::getline(is, s) ;
   str = s.c_str() ;
   return is ;
}