是否可以从 repl 中取消导入隐式?
说我做这样的事情,
scala> import scala.math.BigInt._
import scala.math.BigInt._
scala> :implicits
/* 2 implicit members imported from scala.math.BigInt */
/* 2 defined in scala.math.BigInt */
implicit def int2bigInt(i: Int): scala.math.BigInt
implicit def long2bigInt(l: Long): scala.math.BigInt
然后决定这都是一个大错误。如何从当前范围中删除这些隐式?
我目前的技术是中止 REPL,然后开始一个新的,我很想避免重复它。