#include "mbconfig.h"
#include <cstring>
#include <string>
#include <cmath>
#include <limits>
#include "myassert.h"
#include "mynewmem.h"
#include "table.h"
Go to the source code of this file.
std::ostream& operator<< |
( |
std::ostream & |
out, |
|
|
const Table & |
T |
|
) |
| |
Definition at line 160 of file table.cc.
References Table::vm.
162 for (Table::VM::const_iterator i = T.
vm.begin(); i != T.
vm.end(); ++i) {
164 if (i->second->Const()) {
167 out << i->second->GetTypeName()
168 <<
" " << i->second->GetName()
169 <<
" = " << i->second->GetVal() << std::endl;