给定 a List
,我想过滤掉任何等于Unit - ()
。
有没有比通过这段代码更好的过滤方法?
scala> List( () ).filter( x => x != () )
<console>:8: warning: comparing values of types Unit and Unit using `!=' will
always yield false
List( () ).filter( x => x != () )
^
res10: List[Unit] = List()