For filtering true booleans: :one: ```.filter { it...
# codereview
a
For filtering true booleans: 1️⃣
Copy code
.filter { it }
or 2️⃣
Copy code
.filter(true::equals)
1️⃣ 18
2️⃣ 3
p
Create an extension function called onlyTrue?
👍 1
a
I wouldn't want to go that way, this time I'm asking in relation to
Single<Boolean>
and there are so many other types that have a
filter(T -> Boolean)
function