You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the renderer should be available of its cell if possible, so it should be inline fun <reified T : Any> render(noinline renderer: Cell.(T) -> Any) instead of inline fun <reified T : Any> render(noinline renderer: (T) -> Any).
The text was updated successfully, but these errors were encountered:
Did not think about that. I think it would suffice. Still, from API wholeness point of view, it still makes sense. For example, it would be possible to create stand-alone renderers. Of course with currentCell it is just cosmetics.
I think the renderer should be available of its cell if possible, so it should be
inline fun <reified T : Any> render(noinline renderer: Cell.(T) -> Any)
instead ofinline fun <reified T : Any> render(noinline renderer: (T) -> Any)
.The text was updated successfully, but these errors were encountered: