I am trying to create an implicit conversion from any type (say, Int) to a String...
An implicit conversion to String means RichString methods (like reverse) are not
Either make a huge proxy class, or suck it up and require the client to disambiguate it:
100.asInstanceOf[String].length