Return TypeFunction nameArguments
boolhzPauli::operator<(hzPauli&,)

Declared and defined in file: hdsGraph.cpp

Function Logic:

0:START 1:unknown 2:Return false 3:unknown 4:Return true 5:Return (m_Y

Function body:

bool hzPauli::operator< (hzPauli& op)
   {
       if (m_X > op.m_X)   return false ;
       if (m_X < op.m_X)   return true ;
       return (m_Y < op.m_Y) ;
   }