12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
+
+
+
|
extern ostream& ToString( ostream& out, const LocationId& x );
extern ostream& ToString( ostream& out, const string& x, char delim = '\'' );
extern ostream& ToString( ostream& out, StringId x );
extern ostream& ToString( ostream& out, const Delimiter& x );
extern ostream& ToString( ostream& out, const Hole& x );
extern ostream& ToString( ostream& out, const ptr< void >& x );
extern ostream& ToString( ostream& out, const void* x );
extern ostream& ToString( ostream& out, const AnyTerm& at );
extern ostream& ToString( ostream& out, const VecOfLength& v );
extern ostream& ToString( ostream& out, const OrPattern& o );
extern ostream& ToString( ostream& out, const ptr< Vector >& v );
extern ostream& ToString( ostream& out, const BigInt& t );
extern ostream& ToString( ostream& out, const APSInt& t );
}
#endif
|