Say I have a class `Foo` with a `suspend fun baz` ...
# arrow
d
Say I have a class
Foo
with a
suspend fun baz
that returns an
Either...
, when I try to do
fooInstance::baz.memoize()
Intellij doesn't seem to suggest to import anything... (BTW shouldn't it be memoized? Isn't that the way the standard library does for naming non-in-place operations like https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/sorted.html)
👀 1