|
FAUST compiler
0.9.9.6b8
|
#include <ppbox.hh>

Public Member Functions | |
| envpp (Tree e) | |
| ostream & | print (ostream &fout) const |
Private Attributes | |
| Tree | fEnv |
| envpp::envpp | ( | Tree | e | ) | [inline] |
| ostream & envpp::print | ( | ostream & | fout | ) | const |
Definition at line 305 of file ppbox.cpp.
References fEnv, hd(), isList(), and tl().
Referenced by operator<<().
{
const char* sep = "";
Tree l = fEnv;
fout << '{';
while (isList(l)) {
fout << sep << boxpp(hd(hd(l))) << "=" << boxpp(tl(hd(l)));
sep = ", ";
l = tl(l);
}
fout << '}';
return fout;
}


Tree envpp::fEnv [private] |
1.8.0