D | TextOutput.cpp | 40 TextOutput& operator<<(TextOutput& to, bool val) in operator <<() argument 42 if (val) to.print("true", 4); in operator <<() 43 else to.print("false", 5); in operator <<() 44 return to; in operator <<() 47 TextOutput& operator<<(TextOutput& to, int val) in operator <<() argument 51 to.print(buf, strlen(buf)); in operator <<() 52 return to; in operator <<() 55 TextOutput& operator<<(TextOutput& to, long val) in operator <<() argument 59 to.print(buf, strlen(buf)); in operator <<() 60 return to; in operator <<() [all …]
|