kioba
11/08/2019, 2:38 PMe: error: Arrow's annotations can only be used on Kotlin classes. Not valid for error.NonExistentClass
the code:
@extension
interface ResultFunctor : Functor<ForResult> {
override fun <A, B> ResultOf<A>.map(f: (A) -> B): Result<B> = this.fix().map(f)
}
What do I miss with here?