itemsIndexed
inline fun <T> LazyStaggeredGridScope.itemsIndexed(state: PageableComposeState<T>, crossinline contentType: (index: Int, item: T) -> Any? = { _, _ -> null }, noinline span: (index: Int, item: T) -> StaggeredGridItemSpan? = null, crossinline itemContent: @Composable LazyStaggeredGridItemScope.(index: Int, item: T) -> Unit)
inline fun <T> LazyGridScope.itemsIndexed(state: PageableComposeState<T>, crossinline contentType: (index: Int, item: T) -> Any? = { _, _ -> null }, crossinline itemContent: @Composable LazyGridItemScope.(index: Int, item: T) -> Unit)
inline fun <T> LazyListScope.itemsIndexed(state: PageableComposeState<T>, crossinline contentType: (Int, T) -> Any? = { _, _ -> null }, crossinline itemContent: @Composable LazyItemScope.(index: Int, item: T) -> Unit)