Alberto Ballano

Results 11 comments of Alberto Ballano

After seeing https://github.com/arrow-kt/arrow-core/issues/91 it seems to me that there might be some recursive calling in the Meta processors that some systems are able to handle due to bigger heap memory...

This issue seems to be caused by KotlinPoet itself, [according to the last update (1.6.0)](https://github.com/square/kotlinpoet/blob/master/CHANGELOG.md#version-160): > Mirror API integrations, such as TypeElement.asClassName() and **FunSpec.overriding(ExecutableElement)**, are being deprecated in this release....

According to https://youtrack.jetbrains.com/issue/KT-29242 this is a bug in the language itself, so nothing specific to Arrow itself. I guess we should revisit this when they release and we bump to...

@rcd27 R8 is compatible with Proguard so it uses the same rules 👍 [see this for more info](https://stackoverflow.com/questions/52818404/android-java-transition-migration-from-proguard-to-r8/52921486#52921486)

This started happening to me as well after updating from `3.2.0-beta-1` to `3.2.0`, same case as above To workaround it I used a similar approach as above: ``` override fun...

Thank you folks for this post, it helped me achieve the same thing but slightly modified, in case someone wants to read it I just wrote an answer to a...

Hi @Advice-Dog, not sure if I understood you correctly, do you mean that you want a callback? If that's the case I normally pass it in the Renderer constructor, for...

> So I updated this, seems like `AtomicRefW` was removed and replaced with `Ref` on master. That sucks tho as it forces `F` to be `MonadDefer` and while it does...