Test for this URL being less than the supplied test URL. The domain part takes precedence, followed by the resource part and finally the port.

Return TypeFunction nameArguments
boolhzUrl::operator<(hzUrl&,)

Declared in file: hzUrl.h
Defined in file : hzUrl.cpp

Function Logic:

0:START 1:unknown 2:Return false 3:unknown 4:Return true 5:unknown 6:Return false 7:Return Whole()

Function body:

bool hzUrl::operator< (hzUrl& testUrl)
{
   //  Test for this URL being less than the supplied test URL. The domain part takes precedence, followed by the resource part and finally the port.
   //  
   //  Argument: U The test URL
   //  
   //  Returns: True If this hzUrl is equal to the operand hzUrl
   //     False Otherwise
   if (m_addr == testUrl.m_addr)   return false ;
   if (!m_addr && testUrl.m_addr)  return true ;
   if (m_addr && !testUrl.m_addr)  return false ;
   //  _url_space* thisCtl ;  // This URL space
   //  _url_space* suppCtl ;  // Supplied URL space
   //  thisCtl = _urlXlate(m_addr) ;
   //  suppCtl = _urlXlate(testUrl.m_addr) ;
   return Whole() < testUrl.Whole() ? true : false ;
}