I have an Iterator[Option[T]]
and I want to get an Iterator[T]
for those Option
s where T
isDefined
. There must be a better way than this:
it filter { _ isDefined} map { _ get }
I would have thought that it was possible in one construct... Anybody any ideas?