Files
Magisk/app/src/main/java/com/topjohnwu/magisk/databinding/Helpers.kt
2023-03-09 17:45:00 -08:00

10 lines
305 B
Kotlin

package com.topjohnwu.magisk.databinding
import kotlinx.coroutines.CoroutineScope
fun <T : AnyDiffRvItem> diffListOf() =
DiffObservableList(DiffRvItem.callback<T>())
fun <T : AnyDiffRvItem> filterableListOf(scope: CoroutineScope) =
FilterableDiffObservableList(DiffRvItem.callback<T>(), scope)