예제 #1
0
파일: Value.cpp 프로젝트: ahirOrg/ahir
bool Unsigned::Greater_Equal(Unsigned& b)
{
  return(this->Greater(b) && !b.Greater(*this));
}
예제 #2
0
파일: Value.cpp 프로젝트: ahirOrg/ahir
bool Unsigned::Less_Than(Unsigned& b)
{
  return(b.Greater(*this));
}