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()