Reputation: 1186
I was going through the api documentation page of scala but could not find string class specific method, may be I am missing something. Sorry for the noob question.
Upvotes: 2
Views: 64
Reputation: 4999
scala.Predef
defines two implicit conversions from String
: one to WrappedString and another to StringOps.
You will find all the String related methods in these two classes.
Upvotes: 5