Abstract
Calendar
Project Development
Findings and Contributions
Links and References
Return to Europa
object Character_OStream output;
output.Open_External("");
// This line would fail to compile because of To_Text
output << To_Text( 5.3, 2 ) << '\n';
output.Close_External();
object Character_OStream output;
output.Open_External("");
// Creating a modifyable temporary would fix this
object Text temporary = To_Text( 5.3, 2 );
output << temporary << '\n';
output.Close_External();