D | TextOutput.cpp | 37 TextOutput& operator<<(TextOutput& to, bool val) in operator <<() argument 39 if (val) to.print("true", 4); in operator <<() 40 else to.print("false", 5); in operator <<() 41 return to; in operator <<() 44 TextOutput& operator<<(TextOutput& to, int val) in operator <<() argument 48 to.print(buf, strlen(buf)); in operator <<() 49 return to; in operator <<() 52 TextOutput& operator<<(TextOutput& to, long val) in operator <<() argument 56 to.print(buf, strlen(buf)); in operator <<() 57 return to; in operator <<() [all …]
|