Does this play fine with Android Studio as well? 🙂 Yes it does 🤩
🎉 3
t
Ties
06/03/2024, 7:31 AM
Hype!
a
abendt
06/03/2024, 1:20 PM
Could you show a code sample where the plugin is supposed to suggest a missing
bind
or
bindAll
?
a
Alejandro Serrano.Mena
06/03/2024, 1:22 PM
Copy code
fun positive(n: Int): Either<String, Int> = either {
ensure(n >= 0) { "must be positive" }
n
}
fun duplicate(n: Int): Int = n * 2
fun f(n: Int): Either<String, Int> = either {
duplicate(positive(n)) // <- here, in the argument
}
gratitude thank you 1
a
abendt
06/03/2024, 1:25 PM
thanks for the clarification
l
Larry Garfield
06/03/2024, 1:51 PM
Just installed. We’ll see how it goes. 🙂
The description that shows up in the plugin marketplace could stand some improvements…