#include <ppbox.hh>
Public Member Functions | |
envpp (Tree e) | |
ostream & | print (ostream &fout) const |
Private Attributes | |
Tree | fEnv |
Definition at line 73 of file ppbox.hh.
ostream & envpp::print | ( | ostream & | fout | ) | const |
Definition at line 305 of file ppbox.cpp.
References fEnv, hd(), isList(), and tl().
Referenced by operator<<().
00306 { 00307 const char* sep = ""; 00308 Tree l = fEnv; 00309 00310 fout << '{'; 00311 while (isList(l)) { 00312 fout << sep << boxpp(hd(hd(l))) << "=" << boxpp(tl(hd(l))); 00313 sep = ", "; 00314 l = tl(l); 00315 } 00316 fout << '}'; 00317 return fout; 00318 }
Tree envpp::fEnv [private] |