We will provide a String abstraction that will enable use of either ASCII, UTF8, UCS2, and UCS4 implementations while maintaining a consistent interface.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
We will provide a String abstraction that will enable use of either ASCII, UTF8, UCS2, and UCS4 implementations while maintaining a consistent interface.
String should have a method that supports conversion from various types to string (aka sprintf). The method must support n number of arguments.
Do you mean coercion (e.g. operator Int(), etc.)? or something that works with variable arguments? Or both?