I used the following import statement in hope to disable the class of Option, but looks like Option is still availabe in the scope. How to disable it?
scala> import scala.{Option=>_,Either=>_,_}
import scala.{Option=>_, Either=>_, _}
scala> val b:Option[Int]=Some(1)
b: Option[Int] = Some(1)
scala>