- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
RichString is not a member of scala.runtime?
Sun, 2011-06-12, 06:04
Hi,
When I try ti import scala.runtime.RichString, my scala 2.9 compiler
says it
"RichString is not a member of scala.runtime"!
Is it moved to some other package or I do not have something properly
installed?
However can see scala.runtime.RichBoolean there!
Thanks for advise in advance!
Sava.
On Saturday June 11 2011, Sava wrote:
> Hi,
>
> When I try ti import scala.runtime.RichString, my scala 2.9 compiler
> says "RichString is not a member of scala.runtime"!
>
> Is it moved to some other package or I do not have something properly
> installed? However can see scala.runtime.RichBoolean there!
>
> Thanks for advise in advance!
>
> Sava.
I don't think there's been a RichString since Scala 2.7.x. It's now
called scala.collection.immutable.StringOps.
Randall Schulz