Macaulay2 Engine
Loading...
Searching...
No Matches

◆ operator<<()

std::ostream & operator<< ( std::ostream & o,
const FreeAlgebraElement & f )

Definition at line 19 of file FreeAlgebra.cpp.

20{
21 buffer b;
22 f.ring().elem_text_out(b, *f, true, false, false);
23 o << b.str();
24 return o;
25}
void elem_text_out(buffer &o, const Poly &f, bool p_one, bool p_plus, bool p_parens) const
const FreeAlgebra & ring() const
char * str()
Definition buffer.hpp:72

References FreeAlgebra::elem_text_out(), FreeAlgebraElement::ring(), and buffer::str().