を指定すると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()