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

◆ operator<<() [7/18]

buffer & buffer::operator<< ( indent s)
inline

Definition at line 203 of file buffer.hpp.

204 {
205 buffer &o = *this;
206 const int &n = s.n;
207 if (n < 10)
208 o << " ";
209 else if (n < 100)
210 o << " ";
211 o << n;
212 return o;
213 }
buffer()
Definition buffer.hpp:62
void size_t s
Definition m2-mem.cpp:271

References buffer(), and s.