How to unimport String "+" operator in Scala?
- by Alex R
I'm writing a DSL where the "+" operator is strictly numeric, and the String "+" operator is messing up my implicit conversions. What's the syntax for unimporting an operator of the String class?
Thanks