I\'m writing a DSL where the \"+\" operator is strictly numeric, like some other popular languages. It\'s close, but the String \"+\" operator is messing up my implicit conv
The + method for a string is a method on of the String class (and therefore on each string object), and as such it cannot be unimported.