ECn::operator<<

friend ostream& operator<<(ostream&,const ECn&);
#ifndef MR_NO_STANDARD_IO

ostream& operator<<(ostream& s,const ECn& b)
{
    Big x,y;
    if (b.iszero())
        s << "(Infinity)";
    else
    {
        b.get(x,y);
        s << "(" << x << "," << y << ")";
    }
    return s;
}

#endif
© phdlisl all right reserved,powered by GitbookUpdate in 2024-05-14

results matching ""

    No results matching ""