我记得有一个开关可以抑制Scala REPL 中返回类型的打印,但我找不到它。我对将此开关添加到 sbt 构建文件特别感兴趣。类似的东西returnTypes in console := false
。
例如,现在我有
scala> within( Span( 0, 33 ))
res7: scala.collection.immutable.IndexedSeq[(de.sciss.lucre.expr.SpanLike, scala.collection.immutable.IndexedSeq[(de.sciss.lucre.expr.Expr[de.sciss.lucre.stm.InMemory,de.sciss.lucre.expr.SpanLike], de.sciss.lucre.expr.Expr[de.sciss.lucre.stm.InMemory,Long])])] = Vector()
出于显而易见的原因,我想要
scala> within( Span( 0, 33 ))
res7: Vector()